The $ dollar symbol is also used in JavaScript to replace document. getelementbyid.

Source: Internet
Author: User

CopyCodeThe Code is as follows: function $ (ID) {return document. getelementbyid (ID );

The previous version of the browser is no problem, if you use an old browser, you can use the following functionCopy codeThe Code is as follows: function $ (objectid ){
If (document. getelementbyid & document. getelementbyid (objectid )){
// W3C dom
Return document. getelementbyid (objectid );
}
Else if (document. All & document. All (objectid )){
// MSIE 4 dom
Return document. All (objectid );
}
Else if (document. Layers & document. Layers [objectid]) {
// NN 4 Dom.. Note: This won't find nested Layers
Return document. Layers [objectid];
}
Else {
Return false;
}
}

To implement $ instead of document. the effect of getelementbyid is simple, but it does not reference prototype, jquery, and other frameworks. getelementbyid, which can be used everywhere after being defined in a public Javascript file.

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.