问答详情
源自:9-16 创建元素节点createElement

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

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

node.style.color="red"才行

提问者:weibo_幸福长大了_0 2016-04-22 18:06

个回答

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

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

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