属性
attribute $(div[id])含所有id属性的div
attribute=value 属性是某个特定的值得元素,跟第一个配合使用
attribute!=value 属性值不是value
attribute^=value 属性值以value开头
attribute$=value 属性值以value结尾
attribure*=value 属性值包含value
[selector1][selector2][selectorN] 复合选择器
子元素
nth-child(index/even/odd/equation) 里面可以为even odd 3n 2 3n+1 3n+2 匹配其父元素西面的第N个元素
:first-child 匹配其父下的第一个子元素
:last-child匹配其父下最后个子元素
:only-child匹配其父下唯一的子元素 如果不是唯一怎为空 如果只有一个就显示
$(ul li:nth-child(even))
表单
:input 查找所有input 无论是什么类型的
:text 查找各类表单的匹配的元素
表单对象属性
:enabled $(input:enbaled)
:disabled
:chccked
:selected
例子:$("select option:selected") select下的option下的被选择的元素
阅读(446) | 评论(0) | 转发(0) |