$.ajax
没有可能使用?callback=
吗?
我正在尝试为此网址http://gbrds.gbif.org/registry/organisation/15b278a8-1356-4f7b-ba32-3c733c3d0aac.json?op=contacts获取 JSON 响应,但是,在请求中,jQuery 添加?callback=
到 url,因此得到不同的结果。
该请求是针对远程域的:
$.ajax({ url: encodeURI("http://gbrds.gbif.org/registry/organisation/15b278a8-1356-4f7b-ba32-3c733c3d0aac.json?op=contacts"),
dataType: 'jsonp',
type: 'GET',
success: function(data){...});