parseInt截取number直到遇见不认识的为止
用户单击超链接时弹出新窗口:a href = "right.html" target = "_blank"
substring(a,b)开始索引结束索引 截取
substr(a,b)开始索引a截取b长度
isNaN判断是不是不是数字,如果是数字返回false,不是数字返回true
选择器权重大小:id>class>标签
Math.ceil,向上取整,比如-3.4向上取整变成-3
Math.floor向下取整
Math.round四舍五入
null有值,值为null
undefined无值,都有定义
typeof(NaN) number
typeof(Array) string
拼接:
alert("1"+23+true) 123true
alert("1"-23+false) -22
找出数组里的最大值:Math.max.apply(null,arr)