javascript相关语法注意
Posted weixin_ancenhw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript相关语法注意相关的知识,希望对你有一定的参考价值。
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:定时器执行完后跳转页面
以上是关于javascript相关语法注意的主要内容,如果未能解决你的问题,请参考以下文章