JavaScript 是屬於網路的腳本語言!被數百萬計的網頁用來改善設計、驗證表單、偵測瀏覽器、建立cookies,以及更多的應用程式。
下面我們就來介紹下學習JavaScript需要學習的知識點的總結。
1.明確學習javascript的基本目的。
要掌握JavaScript基本的概念,語法,循環,函數,事件等。
var o = { name: 'Jack', age: 20, city: 'Beijing' }; for (var key in o) { alert(key); // 'name', 'age', 'city' }
http://www.php.cn/code/596.html
#2.了解javascript的基本概念
JavaScript一種直譯式腳本語言,是一種動態型別、弱型別、基於原型的語言,內建支援型別。它的解釋器被稱為JavaScript引擎,為瀏覽器的一部分,廣泛用於客戶端的腳本語言,最早是在HTML(標準通用標記語言下的一個應用)網頁上使用,用來為HTML網頁增加動態功能。
http://www.php.cn/code/687.html
#3.javascript的基本文法學習與掌握
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <script> var a = 1; var b = 1; document.write(++a); document.write("<hr>") document.write(b++); </script> </head> <body> </body> </html>
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <script> var sum = 0; for(var i=1;i<=100;i++){ if(i%10==0){ sum+=i; } } document.write("100以内能被10整除的数之和为:"+sum) </script> </head> <body> </body> </html>
http://www.php.cn/course/18.html
4.JavaScript的常見事件的掌握
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <script> function fun1(){ window.alert("欢迎来到php.cn") } function fun2(){ window.alert("你看,你还是点了我") } </script> </head> <body> <form> <input name="点我看看" type="button" value="点我看看" onclick="fun1()"/> <p onclick="fun2()">不要点我</p> </form> </body> </html>
#http://www. php.cn/code/873.html
5.做一些小範例來熟悉JavaScript
http://www.php.cn/course/169. html
http://www.php.cn/course/152.html
以上是JavaScript基礎知識點學習總結的詳細內容。更多資訊請關注PHP中文網其他相關文章!