window.location.href 在IE不跳转的解决方法

         window.location.href = 'NavigationRole.aspx?RoleId=' + node.Id;
在Js代码加入下面两句,IE7加第一句就行,但IE11必须加两句。
        window.event.returnValue = false;                        
        if (window.event.preventDefault) window.event.preventDefault();

你可能感兴趣的:(window.location.href 在IE不跳转的解决方法)