Original: Organize and edit jquery all mind map "with download Address"

Source: Internet
Author: User

Main diagram

The full picture has been packaged:

2.

3.

4.

5.

6.

Attach a simple explanation

How do conversions between DOM objects and Jquer objects convert a jquery object to a DOM object? Test is a span element var arr = $ ("P"); Get a jquery object to see the related properties alert (arr.length); 16 Elements Alert (arr[0].tostring ());//span object 1. Convert jquery to a DOM object var ardom = arr[0]; alert (ardom.innerhtml); Test//Since it is an array why not execute it? Because Jquer cashes cannot use the DOM object's method if (Arr.constructor = = Array) {alert ("yes");//Do not execute arr is a jquery object, so the DOM method does not work} 2. Converts a DOM object to a jquery object var d = document.getElementById ("Domobj"); var cr = $ (d); alert (cr.html ()); Methods for invoking jquery objects

Original: Organize and edit jquery all mind map "attached"

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.