document location history navigator screen frames
跳转页面
window.location 属性location.href 属性location.assign() 方法刷新页面 history.go(0) location.reload([true])
false : 从缓存中加载数据true:从web服务器中加载数据userAgent : 浏览器的名称、版本和操作系统的信息
setInterval(函数,毫秒数) 间歇性计时器(循环 - 可以控制循环间隔时间) clearInterval(计时器返回值) 停止计时器
setTimeout(函数,毫秒数) 延时器,定时器 一次性的计时器 clearTimeout(返回值) 停止延时器
低版本谷歌浏览器 : document.body.scrollTop 其它版本谷歌或其它浏览器 : document.documentElement.scrollTop (documentElement -> html)
//IE8以下不兼容 6. document.querySelector(选择器) : 返回对象 7. document.querySelectorAll(选择器) : 返回类数组