我正在使用 phonegap 构建一个 android 应用程序。我想将 xml 数据从我的主机服务器检索到 android 应用程序。我的 XML 文件:http ://www.guitarmaddy.com/index.php?option=com_dmxmlexport&catid=8 。我想获取所有标签内容并显示在 phonegap 应用程序中。
以前我用过:
$(文档).ready(函数(){
$.ajax({
type: "GET",
url: "www.guitarmaddy.com/index.php?option=com_dmxmlexport&catid=8",
dataType: "xml",
success: function(xml) {
alert("reading xml");
}
});
});
但它不起作用..警报消息没有出现..请给我建议链接,我想知道检索 xml 数据的基础知识。