我的 xml 看起来像这样:
<Container>
<name>x</name>
<id>2</id>
</Container>
确切地说,这是我的 xml 结果的视图源:
我的jQuery代码:
$.ajax({
type: "post",
url: "somefile.jsp",
dataType: "xml",
success: function(xml) {
alert("123:"+xml+":321");
},
error: function(httpRequest, textStatus, errorThrown) {
alert("status=" + textStatus + ",error=" + errorThrown);
}
});
问题:我如何从 jquery 中读取它并将名称和 id 分配给变量?
问题:警报返回我的 xml 文档对象