获取标签对象 obj
obj.style="background-color:red"
obj.style="backgroundColor:red"
这两种 那种 对 为啥都没反应???
obj.style="background-color:red"
obj.style="backgroundColor:red"
上述写法是混淆了CSS和DOM(具体说来就是javascript)这两个内容的语法规则。在CSS中,设置背景颜色可以在标签中的属性设为“background-color:red”。而在DOM中,设置背景颜色,需要用到属性sty.backgroundColor,将其设置为red,而且写法为:“obj.style.backgroundColor="red";”更详细的DOM规则你可以参考http://www.w3school.com.cn/jsref/dom_obj_style.asp
我也没搞懂这个,看了其他人的代码,一瞬间懵逼。这TM是什么意思。感觉没学过这个style属性
obj.style.backgroundColor="red";这样写吧