gpt4 book ai didi

html - 通过将鼠标悬停在标签上来更改图像源

转载 作者:行者123 更新时间:2023-11-28 19:08:55 26 4
gpt4 key购买 nike

我的网页栏上有多个标签,我希望当我将鼠标悬停在该标签上时,其他 div 中的图像应该根据悬停的标签而改变。

如有任何帮助,我们将不胜感激。

  • 谢恩

最佳答案

jQuery ,流行的 javascript 库,你可以很容易地做到这一点:

-- 示例 HTML

<label class="target">Hover to Change</label> 
<img src="image001.gif" class="sourceImage" />

-- 对应jQuery

$("label.target").hover(
function () {
// mousing-over <label class="target"> changes img to 'image002.gif'
$("img.sourceImage").attr("src", "image002.gif");
},
function () {
// mousing-out <label class="target"> changes img to 'image001.gif'
$("img.sourceImage").attr("src", "image001.gif");
}
);

关于html - 通过将鼠标悬停在标签上来更改图像源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1842275/

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