`

window.location.Reload()和window.location.href=window.location.href【转】

阅读更多

<a onclick="javascript:window.location.href=window.location.href;">

<a onclick="javascript:window.location.reload();">测试效果一样。表单没有提交。<input type="submit" onclick="javascript:window.location.reload();" value="单击" id="btnVCode" />
<input type="submit" onclick="javascript:window.location.href=window.location.href;" value="单击" id="btnVCode" />都提交数据

window.location.Reload()应该是刷新.(如果有数据提交的话,会提示是否提交的(是和否选项))
window.location.href=window.location.href; 是定向url提交数据 最好不要用location.reload(),而用location=location比较好,还有在模式窗口(showModalDialog和showModelessDialog)前者不能用。

reload参数有true和false,比较有意思?

window.location.Reload()和window.location.href=window.location.href;都是刷新当前页面。

 

分享到:
评论

相关推荐

    window.location.href页面跳转的用法(区别于redirect)

    相比`Response.Redirect`,`window.location.href`提供了更多的灵活性和定制化选项,尤其是在需要结合客户端脚本进行交互时更为适用。开发者可以根据实际需求选择合适的跳转方式,以提升用户体验和应用程序的功能性...

    详解js location.href和window.open的几种用法和区别.docx

    window.location.href 和 window.location.reload() 都可以用来刷新当前页面,但是它们的行为不同。当有提交数据时,window.location.reload() 会提示是否提交,而 window.location.href 则是向指定的 URL 提交数据...

    jsp 刷新父页面

    window.opener.location.href = window.opener.location.href 刷新以winodw.showModelDialog()方法打开的窗口 window.parent.dialogArguments.document.execCommand('Refresh'); 或 Response.Write("&lt;script&gt;...

    javascript 打开页面window.location和window.open的区别.docx

    - **刷新页面**:如果需要刷新当前页面,可以使用 `window.location.reload()` 方法。 - **跨域限制**:使用 `window.location` 或 `window.open` 时需要注意同源策略,确保不会违反跨域限制。 #### 七、总结 综上...

    js 页面刷新location.reload和location.replace的区别小结.docx

    JavaScript 中的 location.reload 和 location.replace 方法的区别 在 JavaScript 中,我们经常使用 location.reload() 和 location.replace() 两个方法来刷新页面或重定向到新的 URL。但是,这两个方法之间有着...

    关于js中[removed].href,location.href,parent.location.href,top.location.href的用法与区别

    综上所述,window.location.href和location.href用于控制当前页面的跳转,parent.location.href用于控制父级页面的跳转,而top.location.href用于控制最顶层页面的跳转。在实际开发中,了解和正确使用这些属性可以...

    [removed].reload 刷新使用分析(去对话框)

    这样,先将当前URL赋值给`window.location.href`,然后再调用`reload()`方法,可以避免浏览器提示用户离开页面的对话框,因为URL并没有改变,只是进行了刷新。 对于刷新父窗口的情况,如果当前页面是在一个框架或者...

    js刷新页面location.reload()用法详解

    window.opener.location.href = window.opener.location.href; window.opener.location.reload(); ``` ### 6. 与`location.replace()`的区别 `location.replace()`函数会替换当前的历史记录条目,而`reload()`则会...

    location.href语句与火狐不兼容的问题

    input type=”button” value=”添加” onclick=”location.href(‘//www.jb51.net);” /&gt; 测试的时候发现其在IE下是可以用的而firefox则不能使用了。... 代替 location.href(‘url’);” 于是将源程序改为

    javascript页面跳转常用代码.pdf

    另外,刷新页面时,有时可能希望不弹出确认对话框,可以使用`window.location.href=window.location.href`或`window.location.reload()`。需要注意的是,`window.location.href="要刷新的页面"`在某些浏览器(如IE6...

    js 返回上一页和刷新

    2. 使用Response对象:this.response.write("&lt;script&gt;opener.window.location.href=opener.window.location.href;&lt;/script&gt;")可以输出刷新父窗口脚本语句。 3. 使用Response对象:Response.Write("&lt;script language=...

    Javascript窗口与提示大全

    &lt;a href="#" onclick="javascript:window.location.reload();"&gt;刷新 ``` 点击“刷新”链接将会刷新当前页面。 ##### 2. 返回上一级页面 ```html &lt;input type="button" name="button" value="&lt;返回" onclick=...

    javascript 页面刷新和模态对话框 学习总结 推荐哦

    window.location.href = window.location.href; // 刷新当前页面 window.location.href = "http://www.example.com"; // 跳转到新的URL ``` ##### 8. 使用`document.URL` - **语法**: `document.URL = url;` - ...

    关闭时刷新父窗口两种方法

    window.opener.location.... 但[removed].Reload 如果有数据提交的动作,会提示是否提交的(是和否选项) window.opener.location.href=window.opener.location.href 是定向url提交数据,则不会出现是和否 的选择框。

    JS页面跳转和js对iframe进行页面跳转、刷新

    这是最常见的页面跳转方法,通过改变`window.location.href`属性来重定向浏览器到新的URL。 ```javascript window.location.href = "http://www.example.com"; ``` #### 2. `window.navigate`方式 此方法在早期的...

    各种js页面跳转代码

    各种js页面跳转代码 在Web开发中,页面跳转是非常常见的操作,JavaScript提供了多种方式来实现页面跳转...例如:&lt;a href="javaScript:window.parent.frames.manframe.location.reload()"&gt;刷新这段代码将当前框架刷新。

    javascript跳转与返回和刷新页面的实例代码.docx

    本文将深入探讨如何使用JavaScript实现页面跳转、返回以及刷新,并通过具体的示例代码来说明`window.open()`与`window.location.href`的区别。 #### 二、JavaScript中的页面跳转 页面跳转通常指的是将用户从当前...

    javascript页面跳转常用代码宣贯.pdf

    2. `window.location.href=window.location.href; window.location.reload();`:该方法可以刷新当前页面,但在 IE7 中可能会出现问题。 3. `Response.Write("&lt;script language=javascript&gt;parent.left.document....

    刷新父窗口的多种方法

    window.opener.location.href = window.opener.location.href; ``` 这里的关键在于利用`location.href`属性来重新设置父窗口的URL,从而达到刷新的目的。需要注意的是,这种方式并不会触发浏览器的缓存机制,而是会...

Global site tag (gtag.js) - Google Analytics