ie报 不重复发送消息,则无法刷新页面,请单击“重试”,再次发送消息
?
1:发生错误的软件环境,IE6(IE8不会出现错误)。刷新页面是window.location.reload(true);
??
2:解决方法
?
(1):继续使用IE6,客户变态,不用IE7或者IE8。
?
(2) ?
<form id="formID" name="formName" method="get">?
?修改method提交方式修改为“get”。
?
修改
??
window.location.reload(true);?
为
?
window.location.href =window.location.href;window.location.href.reload();??
?