第二章 开发原则
编写符合当代浏览器性能的代码 用CSS来布局 使用渐进增强的方法 各司其职
编写符合当代浏览器性能的代码
减少HTML中元素的数量
减少重绘
代码语言:javascript复制坏代码
<a href="javascript:;" id="example">I'm an Example</a>
<script>
var example=document.getElementById("example");
example.ondblclick=function(){
example.style.backgroundColor="red";
example.style.width="200px";
example.style.color="white";
}
</script>
代码语言:javascript复制好的代码
<a href="javascript:;" id="example">I'm an Example</a>
<style>
.dblClick{
width:200px;
background:red;
color:white;
}
</style>
<script>
var example=document.getElementById("example");
example.ondblclick=function(){
example.className="dblClick";
}
</script>