Jquery Study Notes (1)

Source: Internet
Author: User

Basic knowledge:
<Button onclick = "... "> </Button> and other things. js is written between Copy codeThe Code is as follows:
$ (Document). ready (funciton (){
...
});

Of course, it will be simpler:
Copy codeThe Code is as follows:
$ (Function (){
...
});

So this is my first Jquery script.
$ (Function () {alert ("I'm ready ")});
Jquery object methods and DOM object methods cannot be used together. For example, $ ("# id"). innerHTML or document. getElementById ("id" ).html () is incorrect.
Conversion between a Jquery object and a DOM object. The object returned by the Jquery selector is actually returned in the form of an object array. Therefore, you can use an array subscript for conversion. You can also use the get (index) method in Jquery.
Copy codeThe Code is as follows:
$ (Function (){
Var $ p = $ ("p ");
Var p = $ p [0]; // var p = $ p. get (0 );
Alert (p. innerHTML );
});

You can also convert a DOM object to a Jquery object.
Copy codeThe Code is as follows:
Var p = document. getElementById ("p ");
Var $ p = $ (p );

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.