Window.location在Internet Explorer中不起作用

时间:2015-01-18 11:22:28

标签: javascript php forms internet-explorer

   function complete()
    {
     updateUserData(); 

     window.location = "/getans.php";
    }

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

无法将用户重定向到IE中的其他页面..但它在chrome和firefox

中工作正常

1 个答案:

答案 0 :(得分:4)

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