`
Franciswmf
  • 浏览: 797175 次
  • 性别: Icon_minigender_1
  • 来自: 上海
文章分类
社区版块
存档分类
最新评论

window.location.Reload()和window.location.href 区别

 
阅读更多
参考:http://blog.csdn.net/cqkxzyi/article/details/7036908

首先介绍两个方法的语法:

reload 方法,该方法强迫浏览器刷新当前页面。
语法:location.reload([bForceGet])参数: bForceGet, 可选参数, 默认为 false,从客户端缓存里取当前页。 true, 则以GET 方式,从服务端取最新的页面, 相当于客户端点击 F5("刷新")

replace 方法,该方法通过指定URL替换当前缓存在历史里(客户端)的项目,因此当使用replace方法之后,你不能通过“前进”和“后退”来访问已经被替换的URL。
语法:location.replace(URL) 参数: URL

在实际应用的时候,重新刷新页面的时候,我们通常使用: location.reload() 或者是 history.go(0) 来做。因为这种做法就像是客户端点F5刷新页面,所以页面的method="post"的时候,会出现“网页过期”的提示。那是因为Session的安全保护机制。可以想到: 当调用 location.reload() 方法的时候, aspx页面此时在服务端内存里已经存在, 因此必定是 IsPostback 的。如果有这种应用: 我们需要重新加载该页面,也就是说我们期望页面能够在服务端重新被创建, 我们期望是 Not IsPostback 的。这里,location.replace() 就可以完成此任务。被replace的页面每次都在服务端重新生成。你可以这么写: location.replace(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,比较有意思?
避免重复提交:
protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)
     {
         if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
         {
             string nr = ((DataRowView)e.Item.DataItem).Row["GZZDS"].ToString();
             string id = ((DataRowView)e.Item.DataItem).Row["RZID"].ToString();
             string rid = ((DataRowView)e.Item.DataItem).Row["RWXH"].ToString();
             string link = "";

            if (nr == "")
             {
                 link = "<a href='#' onclick=\"selectGuide2('BookDoc.aspx?type=2&Id=" + id + "&rid=" + rid + "&Rnd='+Math.random());location=location;\">选择指导书</a>";
             }
             else
             {
                 string t = (ViewState["State"].ToString() == "Query" || ((DataRowView)e.Item.DataItem).Row["GZZT"].ToString() == "工作结束") ? "false" : "true";
                 string path=((DataRowView)e.Item.DataItem).Row["GZZDSPath"].ToString();              

                link = "<a href='#' onclick=\"EditWord('" + path + "'," + t + ")\">" + nr + "</a>";
             }

            ((Literal)e.Item.FindControl("Literal1")).Text = link;
         }
     }

window.location.Reload()和window.location.href  window.location.Reload()应该是刷新.(如果有数据提交的话,会提示是否提交的(是和否选项))
window.location.href=window.location.href;
是定向url提交数据
是大的区别还是是否提交数据了
function refresh()
{
//刷新页面函数
//window.focus();刷新窗口
//document.execCommand("Refresh");刷新窗口
//self.location.reload();刷新当前窗口
parent.location.reload();刷新父窗口
//aaa.location.reload();弹出窗口刷新父窗口
}  
使用window.location.replace() or window.location.href(), 来重新加载此页面不出现提示框
分享到:
评论

相关推荐

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

    ### window.location.href页面跳转的用法(区别于redirect) #### 概述 在Web开发过程中,页面跳转是一项常见的需求。通常我们会使用`Response.Redirect`来进行页面跳转,但这种方式无法在跳转前执行客户端脚本...

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

    三、window.location.href 和 window.location.reload() 的区别 window.location.href 和 window.location.reload() 都可以用来刷新当前页面,但是它们的行为不同。当有提交数据时,window.location.reload() 会...

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

    var url = window.location.href; // 设置新页面的URL window.location.href = "http://www.example.com"; ``` ##### 2. window.location.replace - **用途**:替换浏览器历史记录栈中当前条目的URL。 - **...

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

    * window.location.href:获取整个 URL 字符串(在浏览器中就是完整的地址栏)。 * window.location.protocol:获取 URL 的协议部分。 * window.location.host:获取 URL 的主机部分。 * window.location.port:获取...

    jsp 刷新父页面

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

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

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

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

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

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

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

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

    于是我在location前面加了一个 window,即改为: onclick=”[removed].href(‘http://baidu.com’);” 发现仍然不行。 于是去baidu之,找到一个答案: 使用[removed]=”url”; 代替 location.href(‘url’);” 于是...

    javascript页面跳转常用代码.pdf

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

    js中刷新页面的方法

    ### 一、`window.location.reload()` #### 1.1 基本用法 `window.location.reload()` 是最常用的页面刷新方法之一。它用于重新加载当前窗口或框架中的文档。此方法非常直观且易于理解,在大多数场景下都能满足需求...

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

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

    Javascript窗口与提示大全

    &lt;script&gt;window.opener.location.href=window.opener.location.href;window.close(); ``` 这段代码将关闭当前子窗口,并刷新打开它的父窗口。 ##### 4. 弹出新窗口 ```html &lt;script&gt;window.open('rows.aspx','new...

    js 返回上一页和刷新

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

    js刷新页面 方法大全

    5. `document.location.reload()`: 这种写法等同于`window.location.reload()`,因为`document`对象有一个`location`属性,它引用了`window`对象的`location`属性。 ```javascript document.location.reload(); `...

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

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

    刷新父窗口的多种方法

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

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

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

    JavaScript刷新页面大全

    window.location.href = "/blog/window.location.href"; } setTimeout(refreshPage, 10000); // 每隔10秒执行一次 ``` #### 5. 刷新并跳转到新页面 有时候我们不仅需要刷新页面,还需要跳转到一个新的页面。这...

Global site tag (gtag.js) - Google Analytics