日期:2014-05-17 浏览次数:20488 次
<style>
._NO{width:80px;height:100px;border:1px solid red;float:left;background:url(http://avatar.profile.csdn.net/B/9/3/2_xiongdawang.jpg) no-repeat;}
._NO:hover{background:url(http://www.fbreader.org/sites/default/files/fbreader.png) no-repeat;}
<!--IE支持不好-->
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<img src="http://www.fbreader.org/sites/default/files/fbreader.png">
<div class="_NO"></div>
<script>
$('img').on({
click:function(){
},
mouseover:function(){
$(this).attr("src","http://avatar.profile.csdn.net/B/9/3/2_xiongdawang.jpg");
},
mouseout:function(){
$(this).attr("src","http://www.fbreader.org/sites/default/files/fbreader.png");
}
})
</script>