新手Perfect教程之JavaScript教程—①你好,世界! ...
新手Perfect教程之Javascript教程①—你好,世界!
前言:不知道Javascript是什麼東東的自行度娘或google一下
Javascript在html<head>和<body>里都行,但是必須在<script>里,就像這樣:
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 //Edit JavaScript in here 6 </script> 7 </head> 8 <body> 9 </body> 10 </html>
或者這樣:
1 <!DOCTYPE html> 2 <html> 3 <head> 4 </head> 5 <body> 6 <script> 7 //Edit JavaScript in here 8 </script> 9 </body> 10 </html>
註意:IE5+6還需要<script>裡加上"type="text/javascript",但是在html5里預設的就是Javascript。
以下代碼為本篇教程的重點:
1 <!DOCTYPE html> 2 <html> 3 <head> 4 </head> 5 <body> 6 <script> 7 alert("hello world!"); //打開頁面時彈出對話框"hello world!" 8 </script> 9 </body> 10 </html>
在上面的代碼中,用戶打開頁面時會彈出對話框,內容是hello world!(alert是彈出對話框語句,以後會講到)
————————The End————————
下期預告:新手Perfect教程之Javascript—②函數
我們下期再見!
作者:wy14abcd
未經允許不得轉載