重複の可能性:
無限スクロール JavaScript が既に実行されている
ユーザーが class .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>
私はjquery無限スクロールを使用しているため、.onメソッドを使用するようにアドバイスされているため、表示されたページにhtmlを追加し、クラスlist_item_imageのdivを含む新しいアイテムを追加します