4

IE で Javascript を使用してページを更新する方法は? 次のコードは Mozilla では機能しますが、Internet Explorer では機能しません

window.location.reload());
history.go(0);
4

6 に答える 6

7

javascriptでは、次を使用できます。

location.reload(); => post request, same as click the refresh button on the browser
window.location=window.location; => get request
self.location=self.location; => get request

IEエラーが発生した場合

'Webページを再度表示するには、Internet Explorerは以前に送信した情報を再送信する必要があります'

window.location=window.location;を使用できます。location.reload();の代わりにページを更新します。

実装:

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="PostMethod_Test._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Literal ID="litJavascript" runat="server"></asp:Literal>
<div>
Refresh:
<div>
Get/Post Method:<a href="javascript:location.reload();">JS Location Reload</a> (if
there is any control in the form then after the form was submitted for the first
time, if you click this, it will be a post method coming with the IE alert)
</div>
<div>
Get Method:<a href="javascript:window.location=window.location;">JS Window Location</a>
(does not create a history entry) (if there is any control in the form then after
the form was submitted for the first time, if you click this, it will still be a
get method which means the form will not be submitted again)
</div>
<div>
Get Method:<a href="javascript:self.location=self.location;">JS Self Location</a>
(Same as above)
</div>
<div>
Get/Post Method: IE Refresh button - same as location.reload()
</div>
</div>
<hr />
<div>
Open New Window:
<div>
No Method:<a href="javascript:var a = window.open('webform1.aspx');">JS Window Open</a>
(just open)
</div>
<div>
Post Method for parent page:<asp:Button ID="btnOpen" Text="Open Window" runat="server"     />
</div>
</div>
</div>
</form>
</body>
</html>
于 2012-08-03T05:09:13.993 に答える
6

Window.location.href は、ウィンドウ ページの URL です。あなたがすることは、まったく同じ値を書き換えるだけなので、ブラウザは別の GET リクエストをまったく同じ ur に送信します。

window.location.href = window.location.href;
于 2012-08-03T05:03:51.287 に答える
1
window.location = window.location
于 2012-08-03T05:05:29.367 に答える
1

使用するwindow.location.reload(true);

于 2012-08-03T05:06:34.640 に答える
0

これを使って:

location.reload();

それはうまくいくはずです。うまくいかない場合は、ページの別の場所でエラーが発生している可能性があります。

于 2012-08-03T05:07:18.680 に答える
-1

これはそれを行う必要があります..

window.location.reload();
于 2012-08-03T05:05:24.360 に答える