var xmlTst='<Tests>
<Test>
<Id>123</Id>
<Name>AAA</Name>
</Test>
<Test>
<Id>456</Id>
<Name>BBB</Name>
</Test>
</Tests>';
$("Test>Id[text=" + 123+ "]", xmlTst).parent();
上面的选择器在 IE 中选择上面 xml 的第一个节点。这在 Chrome 中不起作用。
请帮我解决这个问题。