javascript的对象
1.js的string对象
-
join的方法
-
push的方法
-
reverse的方法
js的date对象
-
获得当前年的方法 getYear
-
获得当前月的方法 getMonth
-
获得当前星期的方法 getDay
-
获得当前日的方法 getDate
js的Math对象
*静态方法,直接Math,random()
j的全局函数 直接写方法名称 eval()
js的函数重载(面试中容易问道)
(1)不存在重载
(2)可以通过其他方式模拟重载的效果 通过数组arguments
js的BOM对象
navigator screen location history
window对象
- setInterval 和setTimeout
setinteral 每个几秒执行一次代码 一直执行
setTimeout 隔几秒执行一次代码 执行一次
DOM的解析
document的对象:整个html文档
element对象:标签对象