把与表达式匹配的元素添加到jQuery对象中。这个函数可以用于连接分别与两个表达式匹配的元素结果集。
Adds more elements, matched by the given expression, to the set of matched elements.
返回值jQuery
参数expr (String, DOMElement, Array<DOMElement>) : 用于匹配元素并添加的表达式字符串,或者用于动态生成的HTML代码,如果是一个字符串数组则返回多个元素
示例添加一个新元素到一组匹配的元素中,并且这个新元素能匹配给定的表达式。
HTML 代码:
<p>Hello</p><span>Hello Again</span>
jQuery 代码:
$("p").add("span")
结果:
[ <p>Hello</p>, <span>Hello Again</span> ]
动态生成一个元素并添加至匹配的元素中
HTML 代码:
<p>Hello</p>
jQuery 代码:
$("p").add("<span>Again</span>")
结果:
[ <p>Hello</p>, <span>Hello Again</span> ]
为匹配的元素添加一个或者多个元素
HTML 代码:
<p>Hello</p><p><span>Hello Again</span></p>
jQuery 代码:
$("p").add(document.getElementById("a"))
结果:
[ <p>Hello</p>, <p><span>Hello Again</span></p>, <span>Hello Again</span> ]
----------------------------------------------------------------------------------------------------------------
children([expr])
取得一个包含匹配的元素集合中每一个元素的所有子元素的元素集合。
可以通过可选的表达式来过滤所匹配的子元素。注意:parents()将查找所有祖辈元素,而children()之考虑子元素而不考虑所有后代元素。
Get a set of elements containing all of the unique children of each of the matched set of elements.
This set can be filtered with an optional expression that will cause only elements matching the selector to be collected. Also note: while parents() will look at all ancestors, children() will only consider immediate child elements.
返回值jQuery
参数expr (String) : (可选) 用以过滤子元素的表达式
示例查找DIV中的每个子元素。
HTML 代码:
<p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
jQuery 代码:
$("div").children()
结果:
[ <span>Hello Again</span> ]
在每个div中查找 .selected 的类。
HTML 代码:
<div><span>Hello</span><p>Hello Again</p><p>And Again</p></div>
jQuery 代码:
$("div").children(".selected")
结果:
[ <p>Hello Again</p> ]
----------------------------------------------------------------------------------------------------------------
contents()查找匹配元素内部所有的子节点(包括文本节点)。如果元素是一个iframe,则查找文档内容
Find all the child nodes inside the matched elements (including text nodes), or the content document, if the element is an iframe.
返回值jQuery
示例查找所有文本节点并加粗
HTML 代码:
<p>Hello <a href="https://ejohn.org/">John</a>, how are you doing?</p>
jQuery 代码:
$("p").contents().not("[@nodeType=1]").wrap("<b/>");
结果:
<p><b>Hello</b> <a href="https://ejohn.org/">John</a>, <b>how are you doing?</b></p>
往一个空框架中加些内容
HTML 代码:
<iframe src="https://www.jb51.net/index-blank.html"></iframe>
jQuery 代码:
$("iframe").contents().find("body") .append("I'm in an iframe!");
----------------------------------------------------------------------------------------------------------------
find(expr)
搜索所有与指定表达式匹配的元素。这个函数是找出正在处理的元素的后代元素的好方法。
所有搜索都依靠jQuery表达式来完成。这个表达式可以使用CSS1-3的选择器语法来写。
Searches for all elements that match the specified expression. This method is a good way to find additional descendant elements with which to process.