在此上下文中更改按钮文本

时间:2018-08-02 23:17:02

标签: jquery wordpress

我正在使用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
            }
        });
    });     
});

0 个答案:

没有答案