English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
The :first selector selects the first matching DOM element.
It is usually used with another selector to select the first element in a group (as shown in the following examples).
Note: The :first selector can only select one element.
use:first-childThe selector selects the first child element of its parent.
$(":first")
Select the first paragraph:
$(document).ready(function(){ $("p:first").css("background", "coral"); });Test and See‹/›
Select the first list item:
$(document).ready(function(){ $("li:first").css("background", "coral"); });Test and See‹/›
Select the first row:
$(document).ready(function(){ $("tr:first").css("background", "coral"); });Test and See‹/›
Display: first and :first-Difference between child selectors:
$(document).ready(function(){ $("#btn1").click(function(){ $("p:first").css("background-color", "coral"); }); $("#btn2").click(function(){ $("p:first-child").css("background-color", "lightgreen"); }); });Test and See‹/›