必威体育Betway必威体育官网
当前位置:首页 > IT技术

location reload页面实现跳转和刷新

时间:2019-10-31 22:45:41来源:IT技术作者:seo实验室小编阅读:66次「手机版」
 

location.reload

 

1 history.go(0)

2 location.reload()

location=location

4 location.assign(location)

5 document.execcommand('Refresh')

6 window.navigate(location)

7 location.replace(location)

8 document.URL=location.href

这几个都可以刷新

window.location.reload();刷新

window.location.href=window.location.href;刷新

window.close();关闭窗口,不弹出系统提示,直接关闭 

window.close()相当于self属性是当前窗口

window.parent.close()是parent属性是当前窗口或框架的框架组

页面实现跳转的九种方法实例:

<html>

< head>

< meta http-equiv="content-Type" content="text/html; charset=utf-8" />

< title>navigate</title>

< script language="javascript">

   settimeout('window.navigate("top.html");',2000);

   setTimeout('window.document.location.href="top.html";',2000);

   setTimeout('window.document.location="top.html";',2000);

   setTimeout('window.location.href="top.html";',2000);

   setTimeout('window.location="top.html";',2000);

   setTimeout('document.location.href="top.html";',2000);              

   setTimeout('document.location="top.html";',2000);

   setTimeout('location.href="top.html";',2000);

   setTimeout('location.replace("top.html")',2000);

   //window对象

   //document对象

   //location对象

   //href属性

   //1.window.document.location.href

   //2.window.document.location

   //3.window.location.href

   //4.window.location

  

   //5.document.location.href

   //6.document.location

   //7.location.href

   //8.window.navigate

   //9.location.replace

   //只要使用location方法,和任意的window对象,location对象,href属性连用,都可以页面的跳转//// 

< /script>

< /head>

< body>

页面将在2秒后跳转

< /body>

< /html>

解释:

location是个对象,比如本页的document.location和window.location的属性有    

location.hostname   =   community.csdn.net 

location.href   =   http://community.csdn.net/Expert/topic/4033/4033372.xml?temp=2.695864E-02 

location.host   =   community.csdn.net 

location.hash   =   

location.port   =   

location.pathname   =   /Expert/topic/4033/4033372.xml 

location.search   =   ?temp=2.695864E-02 

location.protocol   =   http: 

可见href是location的属性,类别是string。

文章最后发布于: 2019-06-05 20:29:43

相关阅读

浅析:头条SEO,页面相关性与原创度对站内排序的影响?

声明:本文来自于微信公众号蝙蝠侠IT(ID:batmanit),作者:蝙蝠侠IT,授权站长之家转载发布。早前,我们写了一篇关于《今日头条SEO研究:值得深

天猫密令财神送大礼页面在哪?怎么参与?

最近不少朋友都在咨询小编怎么领取天猫密令红包的问题,其实这个问题不难,最近天猫平台正在举行天猫密令财神送大礼的活动,所有抢到的

js刷新当前页面的5种方式

1。 reload reload 方法,该方法强迫浏览器刷新当前页面。 语法:location.reload([bForceGet])    参数: bForceGet, 可选参数, 默

Android开发中Google地图选点页面打开闪退的问题

Android开发中Google地图选点页面打开闪退的问题使用release签名构建出来的release包,通过adb install 安装一切正常。但是发布到G

将window的location的search字符串转换成一个对象

直接上方法 function formatSearch(se) { if (typeof se !== "undefined") { se = se.substr(1); var arr = se.split(

分享到:

栏目导航

推荐阅读

热门阅读