在浏览器中,find("Section") 不工作我有这个 xml 内容
var xmlContent = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?/><Section type="two_column" name="Section Name" id="attr_id_lines_9810"><Column align="Left"><Label>One</Label><Value>test</Value></Column><Column align="Right"><Label>Two</Label><Value>222</Value></Column></Section>';
$(xmlContent).find("Section").each(function(){console.log($(this).attr('type");});
在 ie 浏览器中,此代码不起作用。但其他浏览器显示正确的结果。如果有人知道解决方案,请更新。