<!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>
ここに myChild クラスの 3 つの p タグがあります。jQuery を使用して 2 番目と最後のタグを選択し、それを操作する方法を知りたいです。