gpt4 book ai didi

jquery - 为什么 .filter 可以找到标签而 .find 却不能?

转载 作者:行者123 更新时间:2023-12-01 00:57:01 25 4
gpt4 key购买 nike

在 Chrome 控制台中尝试这两行(当然还有 jQuery 上下文):

$('<head><title>FooBar</title></head>').find('title')

将产生[] ,但是

$('<head><title>FooBar</title></head>').filter('title')

给出[<title>​FooBar​</title>​] 。但在这个例子中,<title> <head> 的后代,所以不应该使用 find 找到它?

有人能解释一下为什么不吗?

最佳答案

因为$('<head><title>FooBar</title></head>')没有做你认为它正在做的事情。

The jQuery docs explain当您要求 jQuery 以这种方式创建一些 HTML 对象时会发生什么:

If the HTML is more complex than a single tag without attributes, as it is in the above example, the actual creation of the elements is handled by the browser's innerHTML mechanism. In most cases, jQuery creates a new <div> element and sets the innerHTML property of the element to the HTML snippet that was passed in. When the parameter has a single tag (with optional closing tag or quick-closing) — $( "<img />" ) or $( "<img>" ), $( "<a></a>" ) or $( "<a>" ) — jQuery creates the element using the native JavaScript createElement() function.

When passing in complex HTML, some browsers may not generate a DOM that exactly replicates the HTML source provided. As mentioned, jQuery uses the browser"s .innerHTML property to parse the passed HTML and insert it into the current document. During this process, some browsers filter out certain elements such as <html>, <title>, or <head> elements. As a result, the elements inserted may not be representative of the original string passed.

已添加强调。

尝试运行 $('<head><title>FooBar</title></head>')在你的 JavaScript 控制台中,你会看到它只返回 <title>元素。 <head>已被您的浏览器删除。我在 Firebug 中的结果是:

Screenshot of the results in Firebug

Filter() 在元素集中搜索与选择器匹配的元素。您有一组由 <title> 组成的集合。元素,因此它返回该元素。与此同时,Find() 会查看您的 <title> 内部。 child 元素 <title>元素并发现根本没有返回!

关于jquery - 为什么 .filter 可以找到标签而 .find 却不能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17396088/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com