6.2.23 Bom的其他对象

Posted beallaliu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6.2.23 Bom的其他对象相关的知识,希望对你有一定的参考价值。

console.log(window.navigator)

console.log(window.navigator.userAgent)

 console.log(window.location)

技术分享图片

 

//经常使用的方法,跳转页面

window.location.href = ‘https://www.luffycity.com‘

//是全局刷新,尽量少用   == 》 对应的有  局部刷新

window.location.reload();

 

setTimeout(function(){

  window.location.reload();

},3000)

 

以上是关于6.2.23 Bom的其他对象的主要内容,如果未能解决你的问题,请参考以下文章

js中的BOM对象

BOM对象

BOM

BOM 浏览器对象模型

BOM对象和DOM对象

JS——BOM(Windows对象)