GetAttribute in IE6/7 to obtain the href/src attribute (the relative path 0 value is different from other browsers _ javascript skills

Source: Internet
Author: User
GetAttribute in IE67 obtains the hrefsrc attribute (the relative path 0 value is different from that in other browsers. in IE6/7, getAttribute obtains the href/src attribute (the relative path 0 value is different from that in other browsers ).

The test code is as follows:

Home script var link = document. getElementsByTagName ('A') [0]; var img = document. getElementsByTagName ('img ') [0]; alert (link. getAttribute ('href '); alert (img. getAttribute ('src') script

There are elements a and img (standard document mode), and the relative path is set. The Effects of Various browsers are as follows:

IE6/7: return the complete path

If you want to be consistent with other browsers in IE6/7, you can set the second parameter of getAttribute to 2.

Home script var link = document. getElementsByTagName ('A') [0]; var img = document. getElementsByTagName ('img ') [0]; alert (link. getAttribute ('href ', 2); // pay attention to the second parameter alert (img. getAttribute ('src', 2); // pay attention to the second parameter script

The standard getAttribute method does not define the second parameter, which is amazing. The following describes the setAttribute parameter in MSDN:

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.