第1章--基础篇
JS介绍
html 网页的内容;css 网页的样式;javascript 网页的行为
i.e. hello world
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script type="text/javascript"> document.write("hello, world!"); </script> </body> </html>
使用JS的两种方法:
1. <script>...</script>:见上例
2. <script src="url/.js"></script>
JS特性:
运行环境:浏览器 -- 运行在浏览器中的代码
解释型语言:
JS调试
基本语法
基本类型
运算符与表达式
语句
数值
字符串
对象
数组
函数
Date
RegExp
JSON
时间: 2024-11-05 11:31:01