File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,35 @@ description: 简单介绍下JavaScript编程语言,以及对应的环境准备
44
55# 环境
66
7+ ## JavaScript
8+
9+ JavaScript是目前使用最广泛的编程语言之一。作为互联网和移动计算时代的基础支撑语言,它活跃在每一次你浏览网站、App的过程中,提供基本的运算和流程保障。JavaScript的环境触手可及。在电脑端你可以随时打开一个现代的浏览器,页面上右键菜单中选择“Inspect”或者“查看/检查元素”,选择“控制台(Console)”标签。如果你是在移动端或者浏览器不支持,也可以通过一些工具比如[ 移动端Console] ( http://code.hnldesign.nl/demo/hnl.MobileConsole.html ) 来体验JavaScript控制台。
10+
11+ ## 编写代码
12+
13+ 当需要写大量代码组合使用的时候,你可以通过本地编辑Web页面的方式来编写JavaScript代码。JavaScript是Web端的基本编程语言,可以稳定地运行在大多数现代浏览器中。
14+
15+ 通过文件编辑器创建下面的代码,命名为` index.html `
16+
17+ ``` html
18+ <!DOCTYPE html>
19+ <html lang =" zh-cn" >
20+ <head >
21+ <meta charset =" UTF-8" >
22+ <title >Introduction to Programming</title >
23+ </head >
24+ <body >
25+ <script type =" text/javascript" >
26+ console .log (" hello world" );
27+ </script >
28+ </body >
29+ </html >
30+ ```
31+
32+ 在` <script ...> ` 和` </script> ` 之间,就是你编写JavaScript代码的地方。编写完成后,用浏览器打开(或者刷新)这个文件,就能看到对应的效果和执行内容。
33+
34+ 比如上面的代码,就是在控制台打印“hello world”。
35+
36+ 本书推荐使用[ Visual Studio Code] ( https://code.visualstudio.com/ ) 作为基本的代码编辑工具。你可以在官网进行下载和安装。官网也有详细的使用教程。
37+
38+ MDN 中对[ 浏览器开发者工具] ( https://developer.mozilla.org/zh-CN/docs/Learn/Discover_browser_developer_tools ) 和[ 基本的工具软件] ( https://developer.mozilla.org/zh-CN/docs/Learn/Getting_started_with_the_web/Installing_basic_software ) 有更为完整的介绍,可以参考。如果你想了解更多关于Web设计和开发的知识,MDN也有完备的文档供参考。
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="zh-cn ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < title > Introduction to Programming</ title >
6+ </ head >
7+ < body >
8+ < script type ="text/javascript ">
9+ console . log ( "hello world" ) ;
10+ </ script >
11+ </ body >
12+ </ html >
You can’t perform that action at this time.
0 commit comments