2

我有一个我已经设置的图像库,当用户将鼠标悬停在一个图像上时,我不希望它在单独的 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>

谢谢

4

1 回答 1

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

应该:

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

请注意行首的“$”。

于 2011-06-23T15:06:56.183 回答