我是JavaScript新手。我有一个XML文件,试图从中获取值,但变量显示为空。
XML文件(data.xml)
<?xml version='1.0' ?>
<color>f0f8ff</color>
我正试图获取<color>
元素的值。 XML和.js
文件都位于同一文件夹中。
js代码-
$.ajax({
type: "GET" ,
url: "data.xml" ,
dataType: "xml" ,
success: function(xml) {
if single item
var value= $(xml).find('color').text();
}
});
Ajax调用未发生。 谁能帮我这个?否则,还有其他方法可以从xml中获取值吗?