jquery选择器

Posted szzlily

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery选择器相关的知识,希望对你有一定的参考价值。

jquery选择器包括了css选择器和自己新增的一些选择器:

基本筛选器:

  :first  

  :last 

  :gt()

  :lt()

  :eq()

  :even

  :odd

可见性选择器:

  :hidden(匹配所有不可见(包括display:none,不包括visibility:hidden)或type=‘hidden‘的元素)

  :visible

内容选择器:

  :empty                $(‘td:empty‘) 匹配所有不包含子元素或文本的空元素

  :parent               $(‘td:parent‘)匹配含有子元素或者文本的元素

  :contains            $(‘div:contains("szz")‘) 匹配包含给定文本的元素

  :has(selector)     $(‘div:has(p)‘)  匹配所有包含p元素的div

表单选择器:

  :input 匹配所有input元素

  //以下均为type值

  :text

  :password

  :radio

  :checkbox

  :submit

  :image

  :reset

  :button

  :file

以上是关于jquery选择器的主要内容,如果未能解决你的问题,请参考以下文章

jquery选择器都有哪些

[ jquery 选择器 总览 ] jquery选择器总览

jQuery ---[jQuery选择器,jQuery对象的遍历]

jQuery选择器

jQuery选择器概述

jQuery选择器介绍:基本选择器层次选择器过滤选择器表单选择器