私は次のコードを持っています:
$(document).ready(function(){
$('#dl-cat').mouseenter(function(){
$.ajax({
type: "POST",
url: "../control/Controlador.php",
data: {lang: $('html').attr('lang'), cat: $(this).text(), prov: "none"},
success: function(resp) {
$(".og-grid").html(resp);
}
});
});
$(".og-grid li").on("mouseenter", function(){
console.log("it exists");
});
});
「og-grid」クラスが「ul」タグであり、ajax 応答の後に「li」タグなどの html コードを配置しましたが、「mouseenter」などのイベントを新しく追加されたコードにプログラムすると表示されません何もないかのように