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.
当显示 DOM 树时,我通常使用 jQuery 方法 html() 或 DOM 属性 innerHTML。但是,它们都不适用于 XML 树。
我想知道是否有任何等效于 XML 树的这两种方法的东西?
您可以通过以下方式访问节点内容
$(this).find('somenode').text();
和其他属性:
var id = $(this).attr('id'); var title = $(this).find('title').text(); // where this is the some node, in $.each for ex.