jquery ID selector differs from Document.getelementbyidy

Source: Internet
Author: User

Recently wrote the set, found that the $ selection ID can not change its own background picture;

Chrom will report the following error:

Uncaught Typeerror:cannot Set Property ' BackgroundImage ' of undefined

jquery Selector $ (#id) returns a JQuery object, with document.getElementById (ID) returning a DOM object

(1) jquery objects can be converted to DOM objects in two different ways, [index] and. Get (Index)

$ (#id) [0] Get DOM object

$ (#id). Get (0)-----"DOM Object

(2) The DOM object is turned into a jquery object:

$ (DOM object)

Note: You cannot use any method of a DOM object in a jquery object.
For example ("#id"). InnerHTML and ("#id"). Checked and the like are all wrong and can be replaced by jquery methods ("#id"). html () and ("#id"). attr ("checked"). Similarly, a DOM object cannot use the jquery method.

jquery ID selector differs from Document.getelementbyidy

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.