BOM操作

匿名 (未验证) 提交于 2019-12-02 23:47:01

bom中常见的方法

  setTimeout(fn,时间) 延迟方法

  setInterval(fn,时间)  定时器,一般制作动画用

  location.href() 打开一个新页面

  location.reload() 重载页面

  window.open("地址","_self | _blank  | _parent")

 

设置两秒后跳转地址

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>bom操作</title> </head> <body> <a href="#">bom操作</a> <script>     setTimeout(function () {         indow.location.href = 'http://www.apeland.cn'     },2000); window.location.href = 'http://www.apeland.cn' </script> </body> </html>localtion.reload   加载页面,但是一般不推荐使用window.open("www.baidu.com",'_self') 打开网页,在当前页面打开
history.go(0); 表示刷新history.go(1); 表示前进history.go(-1); 表示后退
 

 

转载请标明出处:BOM操作
文章来源: BOM操作
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!