我試圖從ESV API檢索和顯示數據:http://www.esvapi.org/
它正在處理codecademy.com域而不是esvapi.org域。
見琴:http://jsfiddle.net/BinaryAcid/yqCcn/檢索並顯示jQuery GET請求的結果
<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);
});
嘗試添加以下到您的Ajax調用:數據類型:「JSONP」 – Lowkase 2013-04-09 17:45:23
也許你需要憑據或只是調整標題.. – fernandosavio 2013-04-09 17:46:10
你不能在頁面加載後使用文件撰寫。它會做一些討厭的事情來替代所有的頁面內容。如果您正在調試,請使用控制檯。 – epascarello 2013-04-09 17:49:51