Javascripti Web Sayfasına Eklemek
HTML Tagları İçerisine
HTML içinde head İçerisine
<html>
<head>
<script type="text/javascript">
<!--
....
//-->
</script>
</head>
<html>
<body>
<script type="text/javascript">
<!--
document.write("Hello World!");
//-->
</script>
</body>
</html>
HTML içinde head ve body içerisine
<html>
<head>
<script type="text/javascript">
....
</script>
</head>
<body>
<script type="text/javascript">
....
</script>
</body>
Dışarıdan başka bir kaynak dosyadan çekerek
<html>
<head>
<script src="xxx.js"></script>
</head>
<body>
</body>
</html>
Kaynak www.w3schools.com/js/js_whereto.asp
<input type="button" Onclick="alert('Yolanıyor')" />
HTML içinde head İçerisine
<html>
<head>
<script type="text/javascript">
<!--
....
//-->
</script>
</head>
HTML içinde body İçerisine <html>
<body>
<script type="text/javascript">
<!--
document.write("Hello World!");
//-->
</script>
</body>
</html>
HTML içinde head ve body içerisine
<html>
<head>
<script type="text/javascript">
....
</script>
</head>
<body>
<script type="text/javascript">
....
</script>
</body>
Dışarıdan başka bir kaynak dosyadan çekerek
<html>
<head>
<script src="xxx.js"></script>
</head>
<body>
</body>
</html>
Kaynak www.w3schools.com/js/js_whereto.asp
Yorumunuzu Ekleyin