may88seiji
9/5/2017 - 10:51 AM

チェックされたらpush可能になるボタン

チェックされたらpush可能になるボタン

$('#submit').prop('disabled', true);
$('#check').on('change', function() {
  if ( $(this).prop('checked') == false ) {
    $('#submit').prop('disabled', true);
  } else {
    $('#submit').prop('disabled', false);
  }
});
<input id="check" type="checkbox" /><label for="check">チェックを入れたらボタンが押せる</label>
<input id="submit" type="submit" value="Submit" />