9 Eylül 2021 Perşembe

Javascript Parametre Kullanımı

 <html>

<head>

<title> başlık </title>

</head>

<script type="text/javascript">

function topla(x,y)

{

var toplam=x+y;

alert("TOPLAM="+toplam);

}

</script>

</head>

<body>

<input type="button" value="TIKLA" onclick="topla(5,6)">

</body>

</html>


Hiç yorum yok:

Yorum Gönder