Window.location 在 Internet Explorer 中不起作用

Posted

技术标签:

【中文标题】Window.location 在 Internet Explorer 中不起作用【英文标题】:Window.location not working in Internet explorer 【发布时间】:2015-03-16 13:01:34 【问题描述】:
   function complete()
    
     updateUserData(); 

     window.location = "/getans.php";
    

    <input type="button"  id="finish" onClick="complete();" > 

无法将用户重定向到 IE 中的另一个页面..但它在 chrome 和 firefox 中工作正常

【问题讨论】:

No 没有这个错误! 看看这个 stac ***.com/questions/948227/… 【参考方案1】:

试试这个 JSBin http://jsbin.com/coqinunacu/1/edit?html,js

document.createElement("input").complete

complete 是 IE 中的 input 属性,因此只需重命名点击处理程序会有所帮助

或者您也可以明确引用window.complete

<input type="button" value="click"  id="finish" onclick="window.complete()">

【讨论】:

以上是关于Window.location 在 Internet Explorer 中不起作用的主要内容,如果未能解决你的问题,请参考以下文章

window.location.href的用法

window.location.href 和self.location的区别

window.location和window.location.href的区别

document.location和window.location有啥区别

window.location.href=window.location.href 和 window.location.reload() 的区别

window.location.href和window.location.replace的区别