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

jQuery中的冒号详解

时间:2019-09-10 18:03:41      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:就是   checked   选择器   creat   box   wrapper   new   inpu   sele   

 
冒号  可以理解为 “匹配” 或 “选取”的意思。
 
$(":button") 表示匹配所有的按钮。
$("input:checked")表示匹配所有选中的被选中元素(复选框、单选框等,不包括select中的option)。

$("div.container")中的‘.‘号表示class, $("div #msg")中的‘#‘表示id。那么$(":button") 中的‘:‘表示类型(type),如$(":button") 表示类型为button的控件,$("input:checked")表示所有类型为选中的复选框元素。
 
:在css中代表伪选择符,但是在jQuery里(因为jQuery里的选择器很多地方都使用css中的表示方法),这里就是固定用法,还有如下表单控件:具体的你搜一下就有很多说明。
:input
:text
:password
:radio
:checkbox  -->选取所有带有 type="checkbox" 的 <input> 元素。
:checked  -->选取所有被选中的checkbox 的值。
:submit
:image
:reset
:button
:file
:hidden

基本
:first
:last
:not
:even
:odd
:eq
:gt
:lt
:header
:animated
内容
:contains
:empty
:has
:parent
可见性
:hidden
:visible

jQuery中的冒号详解

标签:就是   checked   选择器   creat   box   wrapper   new   inpu   sele   

原文地址:https://www.cnblogs.com/cmd61/p/11498500.html

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