码迷,mamicode.com
首页 > Web开发 > 详细

jquery选择器

时间:2018-10-27 13:23:00      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:input   fir   筛选   one   spl   button   word   splay   元素   

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选择器

标签:input   fir   筛选   one   spl   button   word   splay   元素   

原文地址:https://www.cnblogs.com/szzlily/p/9860663.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!