.each动态添加内容 - jquery

时间:2015-05-16 21:24:13

标签: jquery each

我正在使用Paul Irish制作的无限卷轴,它动态地添加了paginator的新内容。我确实得到了我的其他jquery来使用.on方法,但是如何将它与.each一起使用?我想出的就是它会多次触发或者在动态添加的项目上根本不起作用。

我的代码:

function delete() {
    $('.delete').each(function(index, value) {
        var id = $(this).data('id');

        $(this).on("click", function() {
            if (confirm('Are you sure you want to delete this?')) {
                $(this).parents('.feed').fadeOut();

                var suggests = $.ajax({
                    type: 'post',
                    datatype: 'html',
                    data: "id=" + id,
                    url: 'http://localhost/delete',
                    success: function(data) {}
                });
            }
        });
    });
};

0 个答案:

没有答案