setAttribute在IE与FF中的不同
在IE中不能使用setAttribute对结点属性进行设置。
例如document.getElementById('content').setAttribute("style","color:#ffffff;");
在ie下无法运行,在firefox下可正常使用,可以使用替代的方法,如
document.getElementById('content').style.color="#ffffff";
在style中的“font-size”用
document.getElementById('content').style.font-size="12px";将出现错误,可使用下面代码:
document.getElementById('content').style.fontSize="12px";
