如何使用javascript / jQuery和phonegap解析远程xml文件?

时间:2011-06-07 06:25:44

标签: javascript jquery android ajax cordova

对于phonegap开发:

  1. 是否可以获取phonegape的远程数据?
  2. 是否可以使用ajax / jquery?
  3. 获取远程json / xml文件
  4. XmlHttpRequest可以获取远程xml文件吗?
  5. 也有任何建议或重要链接。

1 个答案:

答案 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

这应该足以让你入门。 如果您有任何其他问题,请告诉我。