Cliché: IE6, a tag href set javascript:void (0); post-bind click Invalidation

Source: Internet
Author: User

Cliché: IE6, a tag href set javascript:void (0), after the binding of the Click event, if there is a form form submission or jump, and other events, will expire! Example:

<a id= "Id_back" href= "javascript:void (0);" title= "Back to Management" > Back </a>

$ ("#id_back"). Click (function () {
$ ("#id_frm"). Submit ();
});

Why is it? The reason is that other browsers prioritize the method in the Click event, but for IE6 browsers, the HREF has precedence over the Click event, only the link void (0) on the href is executed, and the jump action in the Click event is no longer performed.

What if we fix it? Typically, when binding an event, return false to block the browser's default behavior.

$ ("#id_back"). Click (function () {
$ ("#id_frm"). Submit ();
return false;
});

After further analysis of the attempt, such as next, the timing of separate execution, can be submitted.

$ ("#id_back"). Click (function () {
Window.settimeout (function () {
$ ("#id_frm"). Submit ();
}, 0);
});

Cliché: IE6, a tag href set javascript:void (0); post-bind click Invalidation

Related Article

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.