<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<p class="myChild">one</p>
<p class="myChild">two</p>
<p class="myChild">three</p>
<script>
$(document).ready(function(){
//code that selects the second and the third myChild class name
});
</script>
</body>
</html>
在这里,我有 3 个带有 myChild 类的 p 标签,我想使用 jQuery 选择第二个和最后一个标签来执行此操作,并且知道如何使用它进行操作