チェックボックスのチェック状態を取得するサンプルです。
サンプルソース
例)ボタンを押すとチェックボックスの状態をアラート表示する
1 2 3 4 5 6 7 8 9 10 11 12 |
function getCheckboxValue(idname){ //チェック状態を取得する var obj = document.getElementById(idname); var result = obj.checked; // Alertで表示する if(result){ alert('チェック済みです'); }else{ alert('未チェックです'); } } |
1 2 3 4 5 6 7 8 9 10 11 |
<html lang="ja"> <head> <meta charset="utf-8"> <title>サンプル</title> <script src="sample.js"></script> </head> <body> <input type="checkbox" id="chk1"> <input type="button" value="ボタン" onclick="getCheckboxValue('chk1');"> </body> </html> |
実行サンプル
ボタンを押すとチェック状況をアラートで表示します
解説
- チェック状態を取得するには、checkedを使用します。
- チェック済みの場合はtrue、未チェックの場合はfalseが返ります。