Jquery development: mutual conversion between jQuery objects and DOM objects, jquerydom

Source: Internet
Author: User

Jquery development: mutual conversion between jQuery objects and DOM objects, jquerydom

If the obtained object is a jQuery object, add $ before the variable, as shown below:

Var $ variable = jQuery object

If a DOM object is obtained, the definition is as follows:

Var variable = DOM object

1. convert a jQuery object to a DOM object
JQuery provides two methods to convert a jQuery object to a DOM object: [index] And get (index)
(1) The jQuery object is an array-like object. You can use the [index] method to obtain the corresponding DOM object. The jQuery code is as follows:

Var $ cr = $ ("# cr"); // jQuery object var cr = $ cr [0]; // DOM object

(2) The other method is provided by jQuery itself. get the DOM object through the get (index) method. The jQuery code is as follows:

Var $ cr = $ ("# cr"); // jQuery object var cr = $. get (0); // DOM object

2. convert a DOM object to a jQuery object
For a DOM object, you only need to wrap the DOM object with $ () to obtain a jQuery object. The jQuery code is as follows:

Var cr = document. getElementById ("cr"); // DOM object var $ cr = $ (cr); // jQuery object

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.