成功后我需要为 div 设置动画.ajax()
,但它不会。在 ajax 之前我可以,但不能在 ajax 之后.done()
。请帮忙,我什么都试过了。
这是我的代码:
$(".delete").click(function() {
$this = $(this).closest(".photo");
var url = $(this).parent().find("input[type=hidden]").val();
$.ajax({url: '/content/delete.php',
data: {id: url},
dataType: 'json',
type: 'post',
}).done(function( output ) {
if(output){
$this.find(".slider").animate({margin: '0px'}, 200);
}
});
});