1

div>p(选择直接父元素为div元素的p元素)
div+p(选择div元素同级的第一个p)
div~p (选择div元素同级的所有p)
div,p (选择所有div和p)
div p (选择div元素内部的所有p)

第一个child编号为1
p:nth-child(3)
p:nth-child(odd)
p:nth-child(even)
p:nth-child(2n+11)

p:nth-last-child(n)
p:last-child

p:nth-of-type(n)
p:nth-last-of-type(n)
p:last-of-type

p:not(:last-of-type)

p:only-child(匹配父元素下仅有的一个子元素,equal :first-child:last-child OR :nth-child(1):nth-last-child(1))
p:only-of-type(匹配父元素下使用同种标签的唯一一个子元素,equal :first-of-type:last-of-type OR :nth-of-type(1):nth-last-of-type(1))

p:root(匹配文档的根元素,对于html文档,就是html元素)
p:empty(匹配一个不包含任何子元素的元素,文本节点也被当作子元素)

p:enabled
p:disabled
p:checked
:not(p)

p:first-of-type(parent下面第一个type是p的孩子)
p:first-child(nth-child(1))(parent下面第一个child, 必须是p)

$('input[name="aaa"]').attr("checked”) //checked属性的值
$('input[name="aaa"]').prop('checked’) //radiobutton 选中 or 没选中
$('input[name="aaa"]').is(':checked’) //radiobutton 选中 or 没选中

$(’select option’).filter(‘:selected’)
$(’select option’).filter(‘[selected]’)

<input type="text" name="test" value="hello world" />
$(‘:text’).val($(‘’).val());

^= (start with)
$= (ends with)
= (exactly equal)
!= (not equal)
*= (contains)
e.g. $(‘[id^=“item”]')


dingding199389
66 声望1 粉丝

不折不扣的鸡血君