jQuery 如何处理注释元素?
我一直认为 jQuery 仅对 DOM 元素 进行操作,即那些具有 nodeType == 1
的节点。
然而,令我震惊的是,在创建 HTML $("")
时,结果是:
[p, Comment { data=" comment ", length=21, nodeName="#comment", more...}]
(Firebug 格式)
我通过 AJAX 接受了一些 HTML,并以这种方式创建了 DOM Comment 并传递到某处仅适用于元素的函数: 有没有一些干净
的方法可以解决这个问题?
I always thought that jQuery operates only on DOM elements, that is those nodes that have nodeType == 1
.
However I'm shocked that while creating HTML $("<p> </p><!-- comment -->")
results in:
[p, Comment { data=" comment ", length=21, nodeName="#comment", more...}]
(Firebug formatting)
I accepted some HTML by AJAX and a DOM Comment was created this way and passed somewhere to a function that is applicable only to elements: defaultView.getComputedStyle( elem, null )
Is there some clean way out of this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它的选择器仅 select DOM 元素。在您的例子中,您将根据您提供的 HTML 字符串创建节点。因此 jQuery 解析该字符串并返回您所要求的节点。
要清理它,请执行
.filter()
。Its selectors only select DOM elements. In your case, you're creating nodes from the HTML string you've provided. So jQuery parses the string and gives you back the nodes you're asking for.
To clean it, do a
.filter()
.嗯,一个有趣的问题。经过一番摆弄后,我发现您可以使用
.filter
使用通用选择器 (*
)。Hmm, an interesting problem. After fiddling for a bit I found out that you can remove them using
.filter
with the universal selector (*
).