用JavaScript显示/隐藏

我编写了简单的JavaScript显示隐藏的< div>点击另一个< div>后一切正常但是当点击那个< div>中的复选框时隐藏的一个出现并立即隐藏.

$(document).ready(function() {
  $('#click1').click(function() {
    if ($('#hidden1').is(':hidden')) {
      $('#hidden1').show(500);
    } else {
      $('#hidden1').hide(500);
    }
  });
});
.divCell {
  width: 500px;
  height: 35px;
  margin: 2px 0;
  display: inline-block;
  background-color: #D4F78F;
}
.checkBox_div {
  width: 25px;
  position: relative;
  margin: 5px;
  float: left;
}
input[type="checkBox"] {
  display: none;
}
input[type="checkBox"] + label {
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  border-radius: 4px;
}
.div_name_divcell {
  line-height: 35px;
  width: auto;
  float: left;
}