我正在尝试用 jquery 读取 xml。我使用 jquery 将 xml vai ajax 请求作为 xml 响应。
function onSuccess(xml)
{
this._xmlJqueryElem = $(xml); /* this => main scope (I use $.proxy() here) */
}
然后我使用find()
jQuery的功能来搜索节点并获取如下值。
var documentName = this._xmlJqueryElem.find('DocumentName').text();
这在 xml 响应不是小写时有效,但有时来自服务器的 xml 响应是小写的,然后它找不到任何带有键的元素DocumentName
;因为是现在documentname
。
有没有办法让 find() 函数不区分大小写?