Window.location 在 Internet Explorer 中不起作用


Window.location not working in Internet explorer

   function complete()
    {
     updateUserData(); 
     window.location = "/getans.php";
    }
    <input type="button"  id="finish" onClick="complete();" > 

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

试试这个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()">