我一直遇到这个问题。我认为这应该很简单,但我似乎无法让它工作。滚动浏览我的facebook按钮时,我希望显示一个新图像。谢谢你的帮助!
<p align="right">
<a href="http://www.facebook.com/AerialistPress" ><img height="30px" id="facebook" class="changePad" alt="Aerialist Press Facebook Page" src="/sites/aerialist.localhost/files/images/facebook300.jpg" /></a>
<a href="http://twitter.com/#!/AerialistPress" > <img height="30px" class="changePad" alt="Aerialist Press Twitter Page" src="/sites/aerialist.localhost/files/images/twitter300.jpg" /></a>
<a href="http://www.pinterest.com/aerialistpress" ><img height="30px" class="changePad" alt="Aerialist Press Pinterest Page" src="/sites/aerialist.localhost/files/images/pinterest300.jpg" /></a>
</p>
<script>
jQuery(document).ready(function(){
jQuery('#facebook').mouseover(function() { jQuery('#facebook').attr('src').replace('/sites/aerialist.localhost/files/images/facebook-roll.jpg'); })
});
</script>
答案 0 :(得分:1)
attr
方法返回指定属性的值(在本例中为'src'),replace
正在尝试修改字符串并返回一个新实例。但是,你没有对新实例做任何事情。
要设置属性,您必须将其他参数传递给attr
方法。
以下是attr
方法的文档:
http://api.jquery.com/attr/
您的代码应为:
jQuery('#facebook').attr('src', '/sites/aerialist.localhost/files/images/facebook-roll.jpg');
答案 1 :(得分:0)
请勿使用replace
,只需直接设置src
attr:
jQuery('#facebook').attr('src', '/sites/aerialist.localhost/files/images/facebook-roll.jpg');
答案 2 :(得分:0)
更改
jQuery('#facebook').attr('src').replace('/sites/aerialist.localhost/files/images/facebook-roll.jpg');
到
jQuery('#facebook').attr('src', '/sites/aerialist.localhost/files/images/facebook-roll.jpg');
您也可以使用$('#facebook')
代替$('#facebook')
答案 3 :(得分:0)
这里你去!
$("#img").hover(function(){
//mouseover
$(this).attr('src', 'https://twimg0-a.akamaihd.net/profile_images/1768071248/smile_normal.jpg');
},
function(){
//mouseout
$(this).attr('src', 'http://www.bestfreeicons.com/smimages/Emotes-face-smile-icon.png');
});
答案 4 :(得分:0)
这有效
<script type ="text/javascript">
$(document).ready(function(){
$('#facebook').mouseenter(function() {
$('#facebook').attr("src","heretheotherimage.png");
})
$('#facebook').mouseleave(function() {
$('#facebook').attr("src","heretheimage.png");
})
});
</script>
<img src ="heretheimage.png" id ="facebook" />