Event binding in Jquery $ (& quot; # btn & quot;). bind (& quot; click & quot;, function (){}),

Source: Internet
Author: User

Event binding in Jquery $ ("# btn"). bind ("click", function (){}),

Event binding in Jquery: $ ("# btn"). bind ("click", function (){})

Because every call is too troublesome, jquery uses $ ("# btn"). click (function () {}) to simplify it.


Event binding in jQuery

Event needs to be triggered, which is the entry to call js.
Target: indicates the event source object. Click an element at the innermost layer of the nested element. This element is the target. In IE6/7/8, srcElement is used.
CurrentTarget: the element that adds the event handler. For example, el in el. addEventListener is currentTarget. IE6/7/8 does not have a corresponding attribute. You can use this in handler to replace evt. currentTarget = this.
RelativeTarget: an event-related element. It is generally used in mouseover and mouseout events. In IE6/7/8, it corresponds to fromElement and toElement.
For example:
When you click, the current id is displayed.
<Input type = "button" value = "test-Pride" id = "test-btn"/>
<Script type = "text/javascript">
$ ('Input'). bind ('click', function (event ){
Alert(event.tar get. id );
});
</Script>

How to deal with repeated event binding in Jquery ???

You can remove the original event on the submit before binding an event to the submit.
That's it.
$ ("# Submit"). unbind ("click ");
$ ("# Submit"). click (function (){
Your code
});

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.