jQuery uses CSS selectors to select HTML elements.
$("p") selects all <p> elements.
$("p.intro") selects all <p> elements with class="intro".
$("p#demo") selects the first <p> element with id="demo".
Chú ý:
$("p") selects all <p> elements.
$("p.intro") selects all <p> elements with class="intro".
$("p#demo") selects the first <p> element with id="demo".
Chú ý:
- Trường hợp: Giả sử bạn có thẻ:
<input type="button" value="Ẩn đoạn text" />
Muốn chọn phần tử input có type là button, bạn viết là $("input[type]=button") - Selects all input, textarea, select and button elements.
jQuery(':input')
Nhận xét
Đăng nhận xét