jQuery 如何处理注释元素?

发布于 2024-12-17 14:11:05 字数 363 浏览 3 评论 0原文

我一直认为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天生の放荡 2024-12-24 14:11:05

我一直认为 jQuery 只对 DOM 元素进行操作

它的选择器仅 select DOM 元素。在您的例子中,您将根据您提供的 HTML 字符串创建节点。因此 jQuery 解析该字符串并返回您所要求的节点。

要清理它,请执行.filter()

var els = $("<p> </p><!-- comment -->").filter(function() { 
                                                  return this.nodeType === 1; 
                                               });

I always thought that jQuery operates only on DOM elements

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().

var els = $("<p> </p><!-- comment -->").filter(function() { 
                                                  return this.nodeType === 1; 
                                               });
萌无敌 2024-12-24 14:11:05

嗯,一个有趣的问题。经过一番摆弄后,我发现您可以使用 .filter 使用通用选择器 (*)。

var a = $("<p></p><!-- comment -->");
console.log(a);
console.log(a.filter("*"));

Hmm, an interesting problem. After fiddling for a bit I found out that you can remove them using .filter with the universal selector (*).

var a = $("<p></p><!-- comment -->");
console.log(a);
console.log(a.filter("*"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文