我正在尝试使用 jQuery.post API 外部回调的返回值(响应).. 那怎么做?
jQuery.post( ajaxurl, 'action', function( response )
{
console.log(response); // this comes back with "working"
// i tried this responseVal = response; but didn't work
});
alert(response); // this will be undefined.
所以我希望警报能够访问响应....是的,我知道我可以在回调内部轻松地提醒它,但我的应用程序需要在外部访问它。
提前致谢。