jQuery is a cross-browser JavaScript library that simplifies operations between HTML and JavaScript. The first version was released by John Resig at BarCamp NYC in January 2006. It is currently being developed by a development team led by Dave Methvin. Among the top 10,000 most visited websites in the world, 59% use jQuery, which is currently the most popular JavaScript library. In this article, we will explain a little trick to you, how jQuery operates the Nth element of the same group of elements.
For example:
There are 3 uls under class="phpernote". Now I want to add class="com" to the fifth li element under each ul
Specific jQuery code:
$(".phpernote ul li:nth-child(5)").addClass("com");
We have successfully added class to the fifth li under each ul as com
Of course, you can also add CSS code directly:
$(".phpernote ul li:nth-child(5)").css({"padding-right":"5px"});
nth-child: The abbreviation in English, n-th, indicates which number, 1, 2, and 3 are represented by the words first, second, and third respectively. The words starting from 4 are numbers + th, such as 4th, 5th, 6th Wait
Get the first li under ul
$("ul li:first-child")
Get the last li under ul
$("ul li:last-child")
The above is how jquery operates the Nth element of the same group of elements The method is explained, I hope it will be helpful to everyone.
Related recommendations:
Summary of jquery operation ul skills
Detailed explanation of the three methods of jQuery operating element css style
The above is the detailed content of jQuery method to operate the Nth element. For more information, please follow other related articles on the PHP Chinese website!