Solution to window. location. href IE lower jump failure

Source: Internet
Author: User

Copy codeThe Code is as follows:
<A href = "javascript: void (0)"> GoNext </a>
$ ("A"). click (function (){
Window. location. href = "xxx.html ";
})

The Code is as above. In IE, especially in IE6, after clicking the hyperlink, the browser does not jump.

The cause may be that the event behavior is blocked by javascript: void (0) in href. The solution is as follows:

1. Add return false to The onclick event to prevent bubbles:
Copy codeThe Code is as follows:
$ ("A"). click (function (){
Window. location. href = "xxx.html ";
Reutrn false;
})

2. the latency is 100 milliseconds.
Copy codeThe Code is as follows:
$ ("A"). click (function (){
SetTimeout (function (){
Window. location. href = "xxx.html ";
},100 );
})

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.