setAttribute问题
aa.style.fontSize="30px";
aa.setAttribute('style','color:red');
效果如下:
aa.style.color="red";
aa.setAttribute('style','font-size:30px');
效果如下:
aa.setAttribute("style","font-size:30px");
aa.setAttribute("style","color:red");
效果如下:
都没有达到预期的效果。
为什么setAttribute("style","font-size:30px");类似的用法不管用,达不到效果呢??