可能重复:
无限滚动 javascript 已经触发
当用户将鼠标悬停在具有类 .item_list_image 的 div 上时,我希望显示其他 div,我正在尝试以下操作,但根本不起作用。
<script type="text/javascript">
$("body").on("mouseenter", ".list_item_image", function () {
{
$(this).children(".gl_view2").show();
$(this).children(".gl_relist").show();
});
$("body").on("mouseleave", ".list_item_image", function () {
{
$(this).children(".gl_view2").hide();
$(this).children(".gl_relist").hide();
});
</script>
有人建议我使用 .on 方法,因为我正在使用 jquery 无限滚动,因此在显示的页面上附加了 html,并添加了包含类 list_item_image 的 div 的新项目