當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。