我有以下方法:
$('.size-list .size').live('click',function(){
$.ajax({
url:'/item/colors/'+ currentItem.id +"/"+$(this).attr('data-name'),
type: 'GET',
success: function(attributes){
//have some callback here to the click function
},
error: function(res){
},
});
}
});
我是这样称呼它的:
$(".size-list li[data-name='" + size + "']").trigger('click');
如何修改上面的函数,以便当 ajax 调用成功时,我可以在.trigger('click')
. 基本上我想在点击 ajax 成功调用后做一些事情。