我想将 ajax 响应加载到颜色框中。颜色框应在单击时打开并显示加载图像,直到获取并显示内容。
我的代码:
jQuery(".likeBar").colorbox({initialWidth:'460px', initialHeight:'355px', width:'460px', height:'355px', overlayClose:true, html: function() {
var eventID = jQuery(this).data("id");
var sp_response = "";
var the_data =
{
action: 'get_likes',
eventID: eventID,
};
jQuery.post(ajaxurl, the_data, function(sp_response) {
return sp_response;
});
}
});
我的问题: 获取的内容不会显示在我的颜色框中。AJAX 调用成功,获取内容,但不显示。
我的问题: 如何将 ajax 调用中的内容插入到颜色框中?