我使用以下jQuery ajax方法来使用基于xml的webservice请同时查找jquery代码。但我无法获取数据。类似的代码适用于jsonp但是使用xml失败。我错过了什么?
更新:本地副本适用于chrome但不适用于mozilla。
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script>
$(document).ready(function () {
$('#myButton').click(function () {
var artistURL = "http://www.thomas-bayer.com/sqlrest/CUSTOMER/0/";
$.ajax({
type: "GET",
dataType: "xml",
url: artistURL,
success: function (data) {
$(data).find("CUSTOMER").each(function () {
$(this).find("FIRSTNAME").each(function () {
$("#semi").text($(this).text());
});
});
}
});
});
})
</script>
</head>
<body>
<button id="myButton"> Click Me</button>
<p id="semi"></p>
</body>
</html>