JS 之 Bom/Dom/节点
一、什么是BOM? 浏览器对象模型 二、BOM中的顶级对象是什么? window 三、window下有哪些子对象? document location history navigator frames screen 四、如何实现跳转页面? window.location location.href 五、如何刷新页面? location.reload([true]) history.go(0) 六、window下方法 1. alert() : 警告框 2. confirm() : 选择框 3. prompt() : 提示输入框 4. open() : 打开一个新窗口 5. close() : 关闭当前窗口 七、计时器(延时器、定时器) 间歇性计时器: setInterval(函数,毫秒数) clearInterval() 一次性计时器: setTimeout(函数,毫秒数) clearTimeout() 八、什么是DOM? 文档对象模型 九、如何获取页面元素对象? 1. document.getElementById() 返回对象,失败,返回null 2. document.getElementsByTagName() 返回伪数组 3. document.getElementsByClassName() 返回伪数组,IE9以下不兼容 function byClassName(obj