Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试获取以下 XML 节点的内容解析$.parseXML():
$.parseXML()
content = $(this).find('[id="100"]')
适用于 id="100" 的每个节点,这意味着我得到 1. + 2 的内容。
content = $(this).find('[id="100" i1="a"]')
不起作用。
我需要哪个表达式只获取 1. 的内容?
如果您正在寻找具有属性 ID 100 和属性 i1 的元素,a那么
a
content = $(this).find('[id="100"][i1="a"]')