#close{
background: url("../images/boxy_btn.png") no-repeat;
width:28px;
height:28px;
float: right;
margin-right: -10px;
margin-top: -10px;
cursor: pointer;
}
这个代码里,我把width和height去掉,背景图就显示不出来了,能解释一下吗
background: url("../images/boxy_btn.png") no-repeat;
width:28px;
height:28px;
float: right;
margin-right: -10px;
margin-top: -10px;
cursor: pointer;
}
这个代码里,我把width和height去掉,背景图就显示不出来了,能解释一下吗
2016-09-24
<script>
function a(){
alert('a');
}
function b(){
alert('b');
}
var o = document.getElementById('btn3');
o.onclick=function(){
a();
b();
}
</script>
function a(){
alert('a');
}
function b(){
alert('b');
}
var o = document.getElementById('btn3');
o.onclick=function(){
a();
b();
}
</script>
2016-09-24
我把attachEvent和addEventListener混写成attachEventListener了,大家注意吧
2016-09-23