原生js的兼容性问题
1.获取元素原有属性的值。
obj.currentStyle[styleName]此为ie的获取方式。
getComputedStyle(obj,null)[styleName];非ie的获取方式
function getStyle(obj,styleName){ if (obj.currentStyle) return obj.currentStyle[styleName]; else return getComputedStyle(obj,null)[styleName]; }
styleName一般为属性默认带有的如color width等;
此为可自定义属性oDiv.setAttribute(‘属性‘,属性值);获取该属性值,oDiv.getAttribute(‘属性‘);删除该属性removeAttribute(‘属性‘);一般用于设置class名和id名。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。