我有下一个代码:
$(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”这样的事件编程到新添加的代码时它没有显示我任何东西,好像它不存在