Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

jQuery slice() 方法

❮ jQuery 遍历方法

示例

从索引号为 2 的 <p> 元素开始选择 <p> 元素

$("p").slice(2)
亲自试一试 »

定义和用法

slice() 方法根据索引选择元素的子集。

子集是较大集合的一部分。

此方法用于通过起始点和结束点限制对组中元素的选择:start 参数是从其创建子集的起始索引(从 0 开始),而 stop 参数是可选的结束点。


语法

$(selector).slice(start,stop)

参数 描述
start 必需。指定从哪里开始选择元素。索引号从 0 开始。

注意:使用负数将从所选元素的末尾而不是开头选择元素。
stop 可选。指定在何处结束选择元素。如果省略,则选择将持续到集合的末尾。索引号从 0 开始。

注意:使用负数将从所选元素的末尾而不是开头选择元素。

亲自试一试 - 示例

开始和结束
如何使用这两个参数从起始点和结束点选择 <p> 元素。

使用负数
使用负数从末尾而不是开头开始选择 <p> 元素。

使用带负数的两个参数
使用带负数的 start 和 stop 从末尾开始选择 <p> 元素。


❮ jQuery 遍历方法

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.