我的 jQuery 悬停几乎没有问题。我制作我的个人页面并从 AJAX 加载我的数据。所以我无法弄清楚为什么悬停是窃听。首先我很艰难,因为我的元素是 position:absolute,但后来我对其进行了编辑并使其成为正常的 div。这是我的代码:
<td id="project" style="background: url('img/pctutorials-bg.png');background-repeat:no-repeat;background-position:center center;vertical-align:bottom;" >
<div class="projectinfo" >
<div class="text" >PCTutorials-BG</div>
</div>
</td>
jQuery
$(".projectinfo").hover(
function () {
alert("Inside");
},
function () {
alert("Outside");
}
);
可以这样做,因为这是在页面加载时不在页面上的元素上。我稍后用 AJAX 加载元素?