Mutual conversion between jQuery objects and DOM objects _ jquery

Source: Internet
Author: User
This article mainly introduces the methods and examples of mutual conversion between jQuery objects and DOM objects, which is very practical. We recommend this article for your reference. 1. convert a jQuery object to a DOM object

JQuery objects cannot use methods in DOM, but if they are unfamiliar with the methods provided by jQuery objects, or jQuery does not encapsulate the desired methods, they must use DOM objects, there are two solutions:

1. The jQuery object is an array-like object. You can use the [index] method to obtain the corresponding DOM object:

The Code is as follows:


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

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

The Code is as follows:


Var $ cr = $ ("# cr") // jQuery object
Var cr = $ 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 Code is as follows:


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

The above is all the content of this article. I hope you will like it.

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.