我正在使用WordPress Ajax,在我处理响应之前,它可以正常工作。我需要做的就是更改按钮文本,但它不起作用(请参见下面的评论:
jQuery(document).ready( function(){
jQuery('.request-appointment').on('click', function(e) {
var id = jQuery(this).data( 'therapist-id' );
jQuery.ajax({
url : 'http://example.com',
type : 'post',
data : {
action : 'set_appointment',
therapist_id : id
},
success : function( response ) {
jQuery(this).html('You have requested appointment');// this does not work
}
});
});
});