当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery :checkbox用法及代码示例


用法
checkbox selector

说明:选择复选框类型的所有元素。

  • 添加的版本:1.0jQuery( ":checkbox" )

$( ":checkbox" ) 等价于 $( "[type=checkbox]" ) 。与其他 pseudo-class 选择器(以 ":" 开头的选择器)一样,建议在其前面加上标签名称或其他选择器;否则,将隐含通用选择器 ("*")。换句话说,裸露的 $(':checkbox') 等同于 $( "*:checkbox" ) ,所以应该使用 $( "input:checkbox" ) 代替。

其他注意事项:

  • 因为 :checkbox 是 jQuery 扩展而不是 CSS 规范的一部分,所以使用 :checkbox 的查询无法利用本机 DOM querySelectorAll() 方法提供的性能提升。为了在现代浏览器中获得更好的性能,请改用[type="checkbox"]

例子:

查找所有复选框输入。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>checkbox demo</title>
  <style>
  textarea {
    height: 25px;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<form>
  <input type="button" value="Input Button">
  <input type="checkbox">
 
  <input type="checkbox">
  <input type="file">
  <input type="hidden">
 
  <input type="image">
  <input type="password">
  <input type="radio">
 
  <input type="reset">
  <input type="submit">
  <input type="text">
 
  <select>
    <option>Option</option>
  </select>
 
  <textarea></textarea>
  <button>Button</button>
</form>
 
<div></div>
 
<script>
var input = $( "form input:checkbox" )
  .wrap( "<span></span>" )
  .parent()
  .css({
    background: "yellow",
    border: "3px red solid"
  });
 
$( "div" )
  .text( "For this type jQuery found " + input.length + "." )
  .css( "color", "red" );
 
// Prevent the form from submitting
$( "form" ).submit(function( event ) {
    event.preventDefault();
});
</script>
 
</body>
</html>

演示:

相关用法


注:本文由纯净天空筛选整理自jquery.com大神的英文原创作品 :checkbox。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。