gpt4 book ai didi

Jquery选择器: How to: change the src attribute of an image tag on link hover

转载 作者:行者123 更新时间:2023-12-01 00:38:50 25 4
gpt4 key购买 nike

当链接悬停在上面时,我需要更改图像的 src 属性

<div class="clear span-33 last" id="navigation">
<div class="hicon span-1"><a href="#" title="Homepage"><img src="../Assets/images/home.png" /></a></div>
</div>

当链接未悬停在...时,也将其更改为默认值...

最佳答案

您确实应该考虑使用 CSS Sprite 在悬停时切换背景。但如果您需要在 jQuery 中执行此操作,类似这样的操作就可以做到。只需根据您的喜好更改源图像(还预加载悬停图像):

var link = $('a'), 
img = link.children('img'),
orig = img.attr('src'),
over = 'over.png',
temp = new Image();

temp.src = over; // preloads

link.hover(function() {
img.attr('src',over);
},function() {
img.attr('src',orig);
}

关于Jquery选择器: How to: change the src attribute of an image tag on link hover,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2016312/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com