我有一个我已经设置的图像库,当用户将鼠标悬停在一个上面时我不想在一个单独的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>
由于
答案 0 :(得分:4)
("#gallerydescription").html( $(this).attr("alt") );
应该是:
$("#gallerydescription").html( $(this).attr("alt") );
注意行开头的'$'。