« 网页打印问题 | 首页 | 途牛新家 »

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";

发表评论

(If you haven't left a comment here before, you may need to be approved by the site owner before your comment will appear. Until then, it won't appear on the entry. Thanks for waiting.)

Creative Commons License
This weblog is licensed under a Creative Commons License.
Powered by
Movable Type 3.2