jQuery基本选择器 jQuery selector test

元素选择器

section

类选择器

.first
.second
div.second
span.second

ID选择器

#myId

群组选择器

span,div#myId

子元素选择器

兄弟元素选择器

div.three ~ div
div.three + div

属性选择器

[data-bind='demo']
[data-bind^='another']
[data-bind$='demo']
[data-bind*='demo']

HTML