9 Eylül 2021 Perşembe

Javascript Birden Fazla Fonksiyon

 <html>

<head>

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

</head>

<script type="text/javascript">

function f1()

{

alert("fonksiyon 1");

}

function f2()

{

alert("fonksiyon 2");

}

</script>

</head>

<body>

<input type="button" value="TIKLA" onclick="f1();f2()">

</body>

</html>


Hiç yorum yok:

Yorum Gönder