一、el.setAttribute(‘class’,’abc’);
代码如下:
复制
.abc { background: red; }
test div
复制
var div = document.getElementById('d1'); div.setAttribute("class", "abc");
IE6/7 : div背景色不是红色
IE8/9/10/Firefox/Safari/Chrome/Opera : div背景色为红色
结果:IE6/7不支持setAttribute(‘class’,xxx)方式设置元素的class。
二、el.setAttribute(‘className’, ‘abc’)
代码如下:
复制
.abc { background: red; }
test div
复制
var div = document.getElementById('d1'); div.setAttribute("className", "abc");
IE6/7 : div背景色为红色
IE8/9/10/Firefox/Safari/Chrome/Opera : div背景色不是红色
结果:IE8/9/10/Firefox/Safari/Chrome/Opera不支持setAttribute(‘className’,xxx)方式设置元素的class。
很有趣,使用setAttribute的时候第一个参数为class和className的情形在IE6/7和IE8/9/10/Firefox/Safari/Chrome/Opera刚好相反。
三、el.className = ‘abc’;
代码如下:
复制
.abc { background: red; }
test div
复制
var div = document.getElementById('d1'); div.className = 'abc';
所有浏览器都支持。
教程来自晨港飞燕的CSDN博客,如有侵权请联系代码狗站长删除。
评论 (0)