在script-a.js中我有这个功能:
null
在script-b.js中我称之为:
NullPointerException
我不想make function callGetAjax(url,callback) {
$.get(url, {}, function(result) {
// this will call the callback and pass the result
callback(result);
});
}
但我需要“导出”数据来详细说明。谢谢。
答案 0 :(得分:0)
Ajax是一种异步工具,因此您只能在其中使用数据。因此,如果您需要使用数据更改dom,则应直接执行:
var url = '/feed/location';
callGetAjax(url,function(result)
{
//console.log(result); <= of course this logs right
data = result;
$('#some_dome_item').html(data);
});