The solution for window. location. href is invalid in IE6 browser. ie6location. href
This article describes how window. location. href in Internet Explorer 6 is invalid. Share it with you for your reference. The specific method is as follows:
Window. location. href is a jump function in js. Many people in ie6 will find that window. location. href cannot be redirected. The following describes the causes and solutions.
The problem code is as follows:
Copy codeThe Code is as follows: <a href = "javascript: void (0);" onclick = "javascript: test ();"> click to jump </a>
<Script>
Test = function (){
Window. location. href = "http://www.bkjia.com ";
}
</Script>
The correct code is as follows:
Copy codeThe Code is as follows: <a href = "javascript: void (0);" onclick = "javascript: test (); return false;"> click to jump </a>
<Script>
Test = function (){
Window. location. href = "http://www.bkjia.com ";
}
</Script>
Cause:
Return false: the browser events do not continue to bubble up and the default events of the browser are triggered.
Summary
The principle is not that window. location. href is incompatible, but that we cannot jump because of the return false.
I hope this article will help you design javascript programs.