我有一个页面,其中使用 jquery 和 ajax 从数据库中显示内容。页面中有很多过程,例如添加新内容和图像、编辑、删除等,并且都使用 ajax。但是现在一些事件函数,如click,mouseenter在从数据库显示的内容中不起作用。
例如:这就是我在页面中显示图像的方式
for(var i=0;i<images.length;i++)
{
$("#content").append("<img src='"+images[i]+"' class='img' width='300' height='200' />");
}
图像显示正确。但是当试图在这样的图像中对点击事件做一些事情时,它不起作用
$("#content .img").on('click',function()
{
//here comes my process, but its not working
}
请帮我解决这个问题。