不要有人有任何想法,爲什麼下面的代碼失敗與雅虎API的Ajax請求不起作用?
$(document).ready(function() {
doAjax("http://somedomain.com/page.aspx");
});
function doAjax(url) {
if (url.match('^http')) {
$.getJSON("http://query.yahooapis.com/v1/public/yql?" +
"q=select%20*%20from%20html%20where%20url%3D%22" +
encodeURIComponent(url) +
"%22&format=xml'&callback=?",
function (data) {
if (data.results[0]) {
var msg = 'success';
} else {
var errormsg = '<p>Error: could not load the widget.</p>';
}
}
);
}
}
我錯過了什麼?
你期望發生的? – SLaks
調用此頁面http://www.somedomain.com/page.aspx(我不希望返回任何輸出)...只做請求。 – Cassini