欢迎来到cool的博客
7

Music box

Click to Start

点击头像播放音乐
新博客链接

checkbox 取消选中 checked

$(".checkitems").click(function() {
  //$(this).prop("checked", true)
  if ($(this).is(':checked')) {
    $(this).attr("checked", true)
    console.info("选中")
  } else {
    $(this).attr("checked", false)
    console.info("取消选中")
  }
});

返回列表