這是使用手機應用編寫的手機應用程序練習代碼的一部分& jquerymobile。爲什麼這個腳本不能調用網絡服務
$('#page_node_pages').live('pageshow',function(){
try {
$.ajax({
url: "http://mydomain/industry",
type: 'get',
dataType: 'json',
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert('page_node_pages - failed to retrieve pages');
console.log(JSON.stringify(XMLHttpRequest));
console.log(JSON.stringify(textStatus));
console.log(JSON.stringify(errorThrown));
},
success: function (data) {
$("#page_node_pages_list").html("");
$.each(data.nodes,function (node_index,node_value) {
console.log(JSON.stringify(node_value));
$("#page_node_pages_list").append($("<li></li>",{"html":"<a href='#page_node_view' id='" + node_value.node.Nid + "' class='page_node_pages_list_title'>" + node_value.node.name + "</a>"}));
});
$("#page_node_pages_list").listview("destroy").listview();
}
});
}
catch (error) { alert("page_node_pages - " + error); }
});
如果我將它編譯爲移動應用程序,它將調用Web服務。但是如果我嘗試在桌面計算機上使用chrome運行它,它不會調用Web服務。有誰知道這是什麼問題?
可能跨域腳本?使用了不同版本的jQuery? –
'live'is自jQuery 1.7 btw以來已棄用。 – nubinub