如何使用无参数的jQuery.slice()方法?
jQuery.slice()方法用于选择元素子集。它使用索引来设置选择。您可以不带参数使用它。没有参数,它将选择所有元素。
的slice()
是等于切片即没有参数。
示例
您可以尝试运行以下代码以使用slice()
不带参数的jQuery方法:
<!DOCTYPE html> <html> <head> <script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").slice(0).css("background-color", "gray"); }); </script> </head> <body> <h1>Heading 1</h1> <p>This is demo text 1.</p> <p>This is demo text 2.</p> <p>This is demo text 3.</p> </body> </html>