- *
- tag
- .class
- #id
- selector01, selector02, selectorN
- parent > child
- :eq()
- :gt()
- :lt()
- :even
- :odd
- :first
- :last
- :first-child
- :first-of-type
- :last-child
- :last-of-type
- :nth-child(n)
- :nth-last-child(n)
- :nth-of-type(n)
- :nth-last-of-type(n)
- :only-child
- :only-of-type
- :animated
- [attribute]
- [attribute="value"]
- [attribute!="value"]
- [attribute|="value"]
- [attribute^="value"]
- [attribute$="value"]
- [attribute*="value"]
- [attribute~="value"]
- :lang(language)
- [bộ chọn thuộc tính 1][bộ chọn thuộc tính n]
- :parent
- :empty
- :text
- :button
- :checkbox
- :checked
- :disabled
- :enabled
- :file
- :focus
- :hidden
- :image
- :input
- :password
- :radio
- :reset
- :selected
- :submit
- :visible
- :root
- :has(selector)
- :header
- ("prev + next")
- ("prev + siblings")
- (":not(selector)")
- :contains(text)
selector01, selector02, selectorN
Đăng bởi: Admin
Định nghĩa và sử dụng
- Chọn nhiều bộ chọn giúp bạn có thể chọn một lúc nhiều bộ chọn khác nhau, tốn ít thời gian hơn cho việc chọn từng bộ chọn.
Cấu trúc
- Đã được thêm vào từ phiên bản 1.0
$('tag')
Ví dụ
Html viết:
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>Tiêu đề</title> <script src="https://code.jquery.com/jquery-latest.js"></script> <script> $(function(){ $('p, div, ul li').css('border','1px solid blue'); }); </script> </head> <body> <div>div</div> <p>p</p> <ul> <li>li</li> <li>li</li> <li>li</li> </ul> </body> </html>
Hiển thị trình duyệt:
Ta thấy các thành phần p, div, li đã được chọn.
Ví dụ
Html viết:
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>Tiêu đề</title> <script src="https://code.jquery.com/jquery-latest.js"></script> <script> $(function(){ $('.paragraph, .division, .list').css('border','1px solid blue'); }); </script> </head> <body> <div class="division">div</div> <p class="paragraph">p</p> <ul> <li class="list">li</li> <li>li</li> <li class="list">li</li> </ul> </body> </html>
Hiển thị trình duyệt:
Ta thấy các thành phần có chứa class .paragraph, .division, .list đã được chọn.
Theo dõi VnCoder trên Facebook, để cập nhật những bài viết, tin tức và khoá học mới nhất!