獲取節點如script標籤的src屬性時,針對非IE6,IE7能夠直接使用src屬性,但在IE6-7中存在問題,能夠藉助getAttribute方法node
getAttribute(attr,iflag)url
iflag 取值:spa
0: 屬性不區分大小寫,可是返回一個被修改的值code
1:區分大小寫,必須嚴格和屬性名匹配才能查找到orm
2:返回一個字符串,可是針對事件屬性不適用blog
4:返回一個擴展的url,完整的url值,只針對url屬性有效事件
官方文檔:https://msdn.microsoft.com/en-us/library/ms536429(VS.85).aspxip
0文檔
Default. Performs a property search that is not case-sensitive, and returns an interpolated value if the property is found.字符串
Performs a case-sensitive property search. To find a match, the uppercase and lowercase letters instrAttributeName must exactly match those in the attribute name.
Returns attribute value as a String. This flag does not work for event properties.
Returns attribute value as a fully expanded URL. Only works for URL attributes.
兼容的寫法:
function getScriptAbsoluteSrc(node) { return node.hasAttribute ? // non-IE6/7 node.src : // see http://msdn.microsoft.com/en-us/library/ms536429(VS.85).aspx node.getAttribute("src", 4) }