Dom 文档对象模型,DOM树
Bom 浏览器对象模型
eval()解析javascrit里面的语法:
eval(“alert(aaa)”)
弹出窗口
var newWindows;
newWindows=open(“”)
newWindows.close()
定时器
var id=setTimeout(fun,3000)
clearTimeout(id)
fun(){
alert(“aaa”)
}
循环定时器
var ids=setInterval(fun,2000)
clearInterval()
获取历史记录
var h1=window.history
location地址栏对象
windows.location 方法属性
reload 重新加载==刷新
location.reload()
获取href
var href=location.href
设置href
location.href=“http://跳转网址”
案例1:定时器执行完后跳转页面