weibo_幸福长大了_0
2016-04-22 18:06
node.setAttribute("color","red");为什么不可以??????
node.style.color="red"才行
node.setAttribute("color","red"); 相当于 color=red. 除非这样写 node.setAttribute("style","color: red;")
node.style.color="red" 相当于 style="color: red;"
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题