对于phonegap开发:
也有任何建议或重要链接。
答案 0 :(得分:3)
Ajax的工作方式没有别的,因为在使用phonegap时,跨域调用是正常的
see my other answer
jquery ajax调用@ http://api.jquery.com/jQuery.ajax/的例子 使用javascript @ http://www.w3schools.com/xml/xml_parser.asp
解析xml
$.ajax({
url: "test.html",
context: document.body,
success: function(){
$(this).addClass("done");
}
});
Example of native javascript call
参考关于ajax的phonegap
(见问题:
Q. I want to create an application for phonegap to access externally deployed web services via AJAX. How can i resolve the issue with the cross-domain security policy of XmlHttpRequest?)
True to life example on this site
这应该足以让你入门。 如果您有任何其他问题,请告诉我。