gpt4 book ai didi

Jquery - 悬停时在单独的 div 中显示图像 ALT 标记

转载 作者:行者123 更新时间:2023-12-01 03:24:45 24 4
gpt4 key购买 nike

我已经设置了一个图像库,当用户将鼠标悬停在一个图像上时,我不希望它在单独的 div 中显示标题。我尝试过下面的代码但没有成功。我不太擅长 jquery 所以有人可以纠正我吗?

Div 的

galleryimages - 缩略图(悬停)的保存位置

gallerydescription - 显示图像标题标签的位置。

我也希望鼠标移开时它会清除描述 DIV。

<script type="text/javascript">
$(document).ready(function(){
$("img.galleryimages").hover(
function () {
("#gallerydescription").html( $(this).attr("alt") );
},
function () {
("#gallerydescription").html("");
}
);
});
</script>

谢谢

最佳答案

("#gallerydescription").html( $(this).attr("alt") );

应该是:

$("#gallerydescription").html( $(this).attr("alt") );

注意行开头的“$”。

关于Jquery - 悬停时在单独的 div 中显示图像 ALT 标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6456241/

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