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