码迷,mamicode.com
首页 > Web开发 > 详细

js和jquery 两种写法 鼠标经过图片切换背景效果

时间:2015-10-12 11:57:52      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

这个是javascript的写法

<img src="res/img/shop-c_32.jpg"  onmouseover="this.src=‘res/img/shop-c_29.jpg‘;" onmouseout="this.src=‘res/img/shop-c_32.jpg‘;">

这是个jquery的写法

<img src="res/img/shop-c_32.jpg" data-back="res/img/shop-c_29.jpg">

再加上jquery的效果写法

<script>
$("img[data-back]").hover(function(){
    $(this).data(fallback,$(this).attr(src));
    $(this).attr(src,$(this).data(back));
},function(){
    $(this).attr(src,$(this).data(fallback));
});

</script>

我比较倾向于后者的写法。那大家觉得呢?

js和jquery 两种写法 鼠标经过图片切换背景效果

标签:

原文地址:http://www.cnblogs.com/alone2015/p/4870955.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!