You could use this to build lists of values, attributes, css values - or even perform special, custom, selector transformations. This is provided as a convenience method for using '$.map()'.
返回值jQuery
参数callback (Function) : 给每个元素执行的函数
示例把form中的每个input元素的值建立一个列表。
HTML 代码:
<p><b>Values: </b></p>
<form>
<input type="text" value="John"/>
<input type="text" value="password"/>
<input type="text" value="http://ejohn.org/"/>
</form>
jQuery 代码:
$("p").append( $("input").map(function(){
return $(this).val();
}).get().join(", ") );
结果:
[ <p>John, password, </p> ]
--------------------------------------------------------------------------------------------------------------
not(expr)
删除与指定表达式匹配的元素
Removes elements matching the specified expression from the set of matched elements.
返回值jQuery
参数expr (String, DOMElement, Array<DOMElement>) : 一个表达式、一个元素或者一组元素
示例从p元素中删除带有 select 的ID的元素
HTML 代码:
<p>Hello</p><p>Hello Again</p>
jQuery 代码:
$("p").not( $("#selected")[0] )
结果:
[ <p>Hello</p> ]
-------------------------------------------------------------------------------------------------------------------------slice(start,[end])
选取一个匹配的子集
与原来的slice方法类似
Selects a subset of the matched elements.
Behaves exactly like the built-in Array slice method.
返回值jQuery
参数start (Integer) :开始选取子集的位置。第一个元素是0.如果是负数,则可以从集合的尾部开始选起。
end (Integer) : (可选) 结束选取自己的位置,如果不指定,则就是本身的结尾。
示例选择第一个p元素
HTML 代码:
<p>Hello</p><p>cruel</p><p>World</p>
jQuery 代码:
$("p").slice(0, 1).wrapInner("<b></b>");
结果:
[ <p><b>Hello</b></p> ]
选择前两个p元素
HTML 代码:
<p>Hello</p><p>cruel</p><p>World</p>
jQuery 代码:
$("p").slice(0, 2).wrapInner("<b></b>");
结果:
[ <p><b>Hello</b></p>,<p><b>cruel</b></p> ]
只选取第二个p元素
HTML 代码:
<p>Hello</p><p>cruel</p><p>World</p>
jQuery 代码:
$("p").slice(1, 2).wrapInner("<b></b>");
结果:
[ <p><b>cruel</b></p> ]
只选取第二第三个p元素
HTML 代码:
<p>Hello</p><p>cruel</p><p>World</p>
jQuery 代码:
$("p").slice(1).wrapInner("<b></b>");
结果:
[ <p><b>cruel</b></p>, <p><b>World</b></p> ]
Selects all paragraphs, then slices the selection to include only the third element.
HTML 代码:
<p>Hello</p><p>cruel</p><p>World</p>
jQuery 代码:
$("p").slice(-1).wrapInner("<b></b>");
结果:
[ <p><b>World</b></p> ]