jQuery中复选框“ checked state”更改事件时如何处理?

要处理复选框的选中 状态,请使用change 事件。它将检查是否选中了checkox。

示例

您可以尝试运行以下代码以了解如何处理jQuery中复选框选中状态更改事件的情况-

<!doctype html>
<html>
<head>
  <title>jQuery Checkbox state</title>
  <style>
  b {
    color: red;
  }
  </style>
  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
 
<input id="checkbox1" type="checkbox" checked="checked">
<label for="checkbox1">Check/ Uncheck this checkbox</label>
<p></p>
 
<script>
$( "input" ).change(function() {
  var $input = $( this );
  $( "p" ).html(
    ".attr( \"checked\" ): <b>" + $input.attr( "checked" ) + "</b><br>" +
    ".prop( \"checked\" ): <b>" + $input.prop( "checked" ) + "</b><br>" +
    ".is( \":checked\" ): <b>" + $input.is( ":checked" ) + "</b>" );
}).change();
</script>
 
</body>
</html>