您好,我可以将每个用于动态创建的元素吗?
$('#cart-info .shopp').each(function(){
var cartitem = $(this);
alert(cartitem);
cartitem.find('img.remove').on('click',function(){
alert(cartitem.attr('id'));
});
});
我在 div cart-info 下创建了元素。但不幸的是,点击事件不起作用。如果在页面加载时提供了元素,则它可以工作。例如看看http://jsfiddle.net/epapathanasiou/jpdZt/1/