如何从jQuery选择器中排除第一个和第二个元素?
要从jQuery中排除第一个和第二个元素,请使用slice()方法。
示例
您可以尝试运行以下代码以从jQuery中排除first和element:
<!DOCTYPE html><html>
<head>
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('p').slice(2).css('font-size', '24px');
});
</script>
</head>
<body>
<p>Java</p>
<p>C++</p>
<p>Ruby</p>
<p>Groovy</p>
</body>
</html>
以上是 如何从jQuery选择器中排除第一个和第二个元素? 的全部内容, 来源链接: utcz.com/z/355012.html