JavaScript就这么回事1:基础知识
1创建脚本块
1:
2:JavaScriptcodegoeshere
3:
2隐藏脚本代码
1:
2:
5:
在不支持JavaScript的浏览器中将不执行相关代码
3浏览器不支持的时候显示
1:
4链接外部脚本文件
1:
5注释脚本
1://Thisisacomment
2:document.write(“Hello”);//Thisisacomment
3:/*
4:Allofthis
5:isacomment
6:*/
6输出到浏览器
1:document.write(“Hello”);
7定义变量
1:varmyVariable=“somevalue”;
8字符串相加
1:varmyString=“String1”+“String2”;
9字符串搜索
1:
2:
7:
10字符串替换
1:thisVar.replace(“Monday”,”Friday”);
11格式化字串
1:
2:
21:
12创建数组
1:
2:
11:
13数组排序
1:
2:
11:
14分割字符串
1:
2:
10:
15弹出警告信息
1:
2:
5:
16弹出确认框
1:
2:
5:
17定义函数
1:
2:
8:
18调用JS函数
1:
2:
19在页面加载完成后执行函数
1:
2:Bodyofthepage
3: