我试图在将鼠标悬停在放置在 div ( #web01
) 中的图像上时显示图像描述。
我一直在玩弄mouseenter
/mouseleave
并且能够显示文本,但是当我将它链接到 div 时,它似乎不起作用。
这可能很容易,但我看不出我做错了什么。
$(document).ready(function () {
$("#web01").mouseenter(function () {
$("#titel").html('<p class="titel">description</p>');
});
$("#web01").mouseleave(function () {
$("#titel").html('<p class="titel"></p>');
});
})