我有一个从另一个域获取 JSON 数据的功能,但我不知道它有什么问题。它永远不会触发成功函数,并且不会返回任何错误。
$.ajax({
url: "http://other-domain.com/sample/Json.aspx",
dataType: "jsonp",
type: 'get',
crossDomain: true,
jsonp: 'jsonp_callback',
success: function() {
alert('abc'); //when success take json data string but i din get in here
}
});
有谁知道这里有什么问题?