JavaScript-BOM对象
Posted benchdog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript-BOM对象相关的知识,希望对你有一定的参考价值。
BOM:使js有能力与浏览器“对话”
---------------------------------------------------
window对象:一个html文档对应一个window对象,用来控制浏览器窗口,直接使用,不需要生成对象。
window.alert()
var ret =window.confirm("hello world");
console.log(ret);
var ret =window.prompt("hello world");
console.log(ret);
open("baidu.com")
close()
setInterval(f,1000) #f为函数名
---------------------------------------------
history对象:属于window子对象
history.back()
history.forward()
history.go(-1)
------------------------------
location对象:属于window对象
location.assign("baidu.com") #链接到百度
location.reload() #刷新F5
location.replace("baidu.com") #覆盖原页面
--------------------------------------------------------
以上是关于JavaScript-BOM对象的主要内容,如果未能解决你的问题,请参考以下文章
网站前端_JavaScript-BOM编程.0001.JavaScriptWindow对象