ホームページ > 記事 > ウェブフロントエンド > JavaScriptの基礎知識の学習まとめ
JavaScript はインターネット用のスクリプト言語です!デザインの改善、フォームの検証、ブラウザの検出、Cookie の作成などを目的として、何百万もの Web ページで使用されています。
それでは、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 は、動的型、弱い型、およびプロトタイプであるリテラル スクリプト言語です。 -based この言語には型のサポートが組み込まれています。そのインタプリタは JavaScript エンジンと呼ばれ、ブラウザの一部であり、クライアント側のスクリプト言語で広く使用されています。これは、HTML Web ページに動的機能を追加するために 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 中国語 Web サイトの他の関連記事を参照してください。