📌  相关文章
📜  复选框单击事件 jquery - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:09.185000             🧑  作者: Mango

代码示例6
$(document).ready(function() {
  //set initial state.
  $('#textbox1').val($(this).is(':checked'));

  $('#checkbox1').change(function() {
    $('#textbox1').val($(this).is(':checked'));
  });

  $('#checkbox1').click(function() {
    if (!$(this).is(':checked')) {
      return confirm("Are you sure?");
    }
  });
});