我正在尝试从 ESV API 检索和显示数据:http: //www.esvapi.org/
它适用于 codecademy.com 域,但不适用于 esvapi.org 域。
见小提琴:http: //jsfiddle.net/BinaryAcid/yqCcn/
<input type="button" value="get data" id="btn" >
$("#btn").click(function() {
var response = '';
$.ajax({ type: "GET",
// url: "http://www.esvapi.org/v2/rest/passageQuery?key=IP&passage=John+1",
url: "http://www.codecademy.com/",
async: false,
success : function(text)
{
response = text;
}
});
document.write(response);
});