ie11缺少对象-window.location.reload(); 火狐下不会报错,ie11报错

问题描述

window.location.reload(); 火狐下不会报错,ie11报错

解决方案

那要看到你的代码才知道

解决方案二:
其他代码呢。。不一定是这句报错吧。。reload会刷新页面,可能你其他代码还在执行导致报这个错误

解决方案三:
你确定是 window.location.reload(); 导致的?

解决方案四:
The reload() method in IE is actually a post method and IE is showing this popup to avoid loss or resend of the information to the server.
Your Modified Code:

  $('.closeccmbtn').on('click' function (event) {            $this.find('[id$=""hdnloaded""]').val('false');            event.preventDefault();            //document.location.reload(true);            window.location = window.location;        });

Additional Details
When a page is loaded using POST request and you try to reload the page using location.reload(true); the browser needs to send another POST request to the server and this may cause problems as POST is supposed to change state on the server. Therefore the browser needs confirmation from the user. To solve this problem we usually use POST-REDIRECT-GET pattern.
Source URL
http://stackoverflow.com/questions/17723944/to-display-the-webpage-again-internet-explorer-needs-to-resend

解决方案五:
这一句应该没问题吧。

时间: 2024-11-27 15:17:33

ie11缺少对象-window.location.reload(); 火狐下不会报错,ie11报错的相关文章

window.location.reload 刷新使用分析(去对话框)_基础知识

使用window.location.reload;刷新时,如果提交数据的动作,则会出现讨厌的对话框! 解决此问题,应该这样写: window.location.href=window.location.href; window.location.reload; 同理,如果是刷新父窗口,应该这样写: window.opener.location.href=window.opener.location.href; window.opener.location.reload(); 这种写法就不出现那讨

window.location.href IE下跳转失效的解决方法

 这篇文章主要介绍了window.location.href IE下跳转失效的解决方法,需要的朋友可以参考下 代码如下: <a href="javascript:void(0)" >GoNext</a>  $("a").click(function(){  window.location.href = "xxx.html";  })    代码如上,在IE下,特别是在IE6中,点击超链接之后,浏览器并没有发生跳转行为. 

window.location.reload()方法刷新页面弹出要再次显示该网页对话框_javascript技巧

用window.location.reload()方法刷新页面时,有时浏览期会出现一个这样的弹出框, 解决办法是: 一: document.location.href = "${base}/rwfp/rwfpcontent" 用这种方法找到页面对应的Action的位置,这样做虽然页面刷新,但是刷新后数据会从第一页开始显示,并不是停留在原来的页面. 二: $("#yhsubmit").click() 这种方法跟分页相关,#yhsubmit为 复制代码 代码如下: &l

解决微信浏览器Javascript无法使用window.location.reload()刷新页面_javascript技巧

场景是这样子的,页面在初始化时有一个ajax请求,在页面上有一个按钮,点击的时候执行window.location.reload(),正常情况reload()后页面依然会向后台发出请求,但在安卓的微信浏览器中reoad后请求的一直是第一次打开页面时请求的数据.可以理解为请求被缓存了,但没有实测,也不知道是否是缓存. 解决方法是,使用window.location.href="window.location.href+随机数" 代替 window.location.reload().切记

window.location.href IE下跳转失效的解决方法_javascript技巧

复制代码 代码如下: <a href="javascript:void(0)" >GoNext</a> $("a").click(function(){ window.location.href = "xxx.html"; }) 代码如上,在IE下,特别是在IE6中,点击超链接之后,浏览器并没有发生跳转行为. 原因可能是因为在href中的javascript:void(0)阻止的事件行为,解决方法如下: 1.在onclic

jscript 缺少对象

问题描述 //JScript文件<!--functioncreateXMLHttpRequest(){if(window.XMLHttpRequest){//Mozilla浏览器xmlHttp=newXMLHttpRequest();if(xmlHttp.overrideMimeType){//设置MiME类别xmlHttp.overrideMimeType("text/xml");}}else{if(window.ActiveXObject){//IE浏览器try{xmlHtt

window.location.href的用法(动态输出跳转)_基础知识

javascript中的location.href有很多种用法,主要如下. self.location.href="/url" 当前页面打开URL页面 location.href="/url" 当前页面打开URL页面 windows.location.href="/url" 当前页面打开URL页面,前面三个用法相同. this.location.href="/url" 当前页面打开URL页面 parent.location.h

JS教程:window.location用法区别

window.location.href=&http://www.webjx.com/javascript/ldquo;url":改变url地址; window.location.replace("url"):将地址替换成新url,该方法通过指定URL替换当前缓存在历史里(客户端)的项目,因此当使用replace方法之后,你不能通过"前进"和"后 退"来访问已经被替换的URL,这个特点对于做一些过渡页面非常有用! window.

JS教程:window.location使用方法的区别介绍_javascript技巧

window.location.href=&http://www.webjx.com/javascript/ldquo;url":改变url地址;window.location.replace("url"):将地址替换成新url,该方法通过指定URL替换当前缓存在历史里(客户端)的项目,因此当使用replace方法之后,你不能通过"前进"和"后 退"来访问已经被替换的URL,这个特点对于做一些过渡页面非常有用!window.lo