​node.setAttribute("color","red");为什么不可以??????

来源:9-16 创建元素节点createElement

weibo_幸福长大了_0

2016-04-22 18:06

node.setAttribute("color","red");为什么不可以??????

node.style.color="red"才行

写回答 关注

1回答

  • 醉了醉了
    2016-04-22 21:20:27
    已采纳

    node.setAttribute("color","red");  相当于 color=red. 除非这样写 node.setAttribute("style","color: red;")

    node.style.color="red" 相当于 style="color: red;"

    weibo_...

    非常感谢!

    2016-05-19 16:51:18

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题