最赞回答 / 泮池五月风
<...code...> 这是在你的基础之上修改几个标点符号后的代码,运行没问题。注意用英文符号就好了。<...code...>这个是在你的基础上简化的代码,运行结果一样。
2016-06-23
最赞回答 / Derek81
a.removeAttribute('style'); 这句是无效的,改为 a.className="";。因为 var a = document.getElementById("p1");而<p id="p1">中并无style属性。样式的添加是通过给对象的className属性赋值实现的,要取消样式就要通过给className赋值为空。如果样式添加是通过setAttribute("style","color:red")方法实现的,removeAttribute('style')就起作用了...
2016-06-21
最新回答 / eagle_thr
alert('txt');用到了( )。因为alert()是一个函数(function)。( )里面为参数。var obj=document.getElementById('idName');obj.style.color='red';obj.style.height=40;用到了' '(' '与 “ ”这里等价)。因为这里不是调用函数,而是给HTML元素对象的属性赋值。
2016-06-20