我有一个已设置的图像库,当用户将鼠标悬停在一个图像库上时,我不想在单独的div中显示标题。香港专业教育学院尝试下面的代码,但无济于事。我在jquery上不太擅长,所以有人可以纠正我吗?
Div的
galleryimages-缩略图(要悬停)的保存位置
gallerydescription-显示图像的Title标签的位置。
我也希望在鼠标移开时清除说明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") );
请注意该行开头的“ $”。