码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript 浏览器对象

时间:2018-12-19 23:25:59      阅读:467      评论:0      收藏:0      [点我收藏+]

标签:head   历史记录   function   ati   set   load   fun   char   button   

bom 把浏览器看成一个对象,是操作浏览器

dom是操作浏览器的内容

 

页面的文档对象
console.log(window.document);
浏览器的框架
console.log(window.frames);
浏览器的信息
console.log(window.navigator);
屏幕的信息
console.log(window.screen);

href属性 控制浏览器地址内容
reload 刷新页面
reload(true) 刷新页面,不带缓存
assign 加载新的页面
replace() 加载新的页面不会在历史记录留下记录
connsole.log(window.locationn);
console.log(window.history);


======================================================
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="js/test.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<button>按钮</button>
<button onclick="func()">跳转到红页面</button>



</body>
</html>


================================
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="js/test.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<button>按钮</button>
<button onclick="func()">跳转到红页面</button>



</body>
</html>


================================
function func(){
console.log("点我干嘛")
// 跳转到red。html
// window.location.href = "red.html"
// window.location.reload()
window.location.assign("red.html")
}
console.log(window.document);
console.log(window.frames);
console.log(window.navigator);
console.log(window.screen);
console.log(window.locationn);
console.log(window.history);
console.log(window,location)
















JavaScript 浏览器对象

标签:head   历史记录   function   ati   set   load   fun   char   button   

原文地址:https://www.cnblogs.com/jeco-li/p/10146890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!