1
5.
//分号的作用
//分号是可选的(根据 JavaScript 标准),浏览器把行末作为语句的结尾,通过使用分号,可以在一行中写多条语句。
6。
//JavaScript 变量名称的规则:
变量对大小写敏感(y 和 Y 是两个不同的变量)
变量必须以字母或下划线开始
7。
//变量的声明
如果您所赋值的变量还未进行过声明,该变量会自动声明。
例:
x=5; carname="Volvo";
与后面的这些语句的效果相同:var x=5; var carname="Volvo";
8。
//比较运算符
运算符 描述 例子
=== 全等(值和类型) x===5 为 true; x==="5" 为 false
9。
//条件运算符(三目运算符)
JavaScript 还包含了基于某些条件对变量进行赋值的条件运算符。
name=("liuhuan"=="LH")?"刘欢":"歌星";
10。
//获得当前系统时间(小时数)
var d = new Date()
var time = d.getHours()
11。
//随机数
var num=Math.random();
产生的伪随机数介于 0 和 1 之间(含 0,不含 1),也就是,返回值可能为0,但总是小于1。在第一次加载 JScript 时随机数发
生器自动产生 。
12。
//获取今天的星期数(星期日为0,星期1-6为1-6)
var d = new Date()
theDay=d.getDay()
13。
//按钮的触发事件
14。
//弹出框内容换行
alert("再次向您问好!在这里,我们向您演示" + '\n' + "如何向警告框添加折行。")
15.
//确认框(删除方法)
//confirm("文本")
16.
//于用户交互的弹出框(可输入文字的提示框)
//prompt("文本","默认值")
17。
//带有参数并返回值的函数
18。
//for循环 (本例中动态生成html中的h标签)
19。
//break跳出语句
解释:循环会在 i=3 时中断。
20。
//continue跳出语句
解释:当 i=3 时,会中断循环,并从下一个值开始继续循环。
21。
//for in循环(相当于.net中的foreach循环)
22.
//javascript event
onload A certain page or image is loaded //Page loading
onunload User exits the page
onfocus The element gets focus
onblur The element loses focus //Form validation
onchange The user changes the content of the field
onreset The reset button is clicked
onsubmit The submit button is clicked //Used for submission Validate all form fields before forming.
For example:
(When the user clicks the confirmation button in the form, the checkForm() function will be called. The return value of the checkForm() function is of bool type. If the return value is true, then
Submit the form, otherwise cancel the submission. )