Introduction to jquery events and functions _ jquery

Source: Internet
Author: User
Jquery events and functions are frequently used. This article describes event binding, function declaration, and naming function expressions. For more information, see 1. Bind events

Method 1:

This method can be used to add events to elements during page loading.

The Code is as follows:


$ ("# MyElement"). click (function (){
Alert ($ (this). text ());
})


Method 2:

Like 1, you can add events to elements after loading a page, such as creating a new DOM element.

The Code is as follows:


$ ("# MyElement"). bing ('click', function (){
Alert ($ (this). text ());
})


2. function declaration and naming function expressions

Function declaration:

The Code is as follows:


Function myFun1 (){
$ ("P"). hide ();
}


Call: myFun1 ();

Function expression:

The Code is as follows:


Var myFun2 = function (){
$ ("P"). hide ();
}


Call: # ("# myElement"). click (myFun2 );

Differences:The difference between the call time and the function declaration can be used anywhere. The name function expression can only be used after the declaration.
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.