Abbreviated document. getelementbyid () method [JS tips]

Source: Internet
Author: User
When writing JavaScript, we will often use the document. getelementbyid () method. This long string is easy to write errors, and getelementbyid is case sensitive.
Prototype. one method advocated in JS is to use $ () for short. With the following functions, you can use $ ('id') to implement document. how about the getelementbyid ('id') function!

Function $ ()
{
VaR elements = new array ();
For (VAR I = 0; I <arguments. length; I ++)
{
VaR element = arguments [I];
If (typeof element = 'string ')
Element = Document. getelementbyid (element );
If (arguments. Length = 1)
Return element;
Elements. Push (element );
}
Return elements;
}

What's better about this function is that if you want it to submit an array with multiple IDs, it will also return an array of multiple elements to you!

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.