javascript判定チェックボックスは少なくとも一つ選択されています.
1068 ワード
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> </title>
</head>
<body>
<input type="checkbox" name="checkselect">
<input type="checkbox" name="checkselect">
<input type="checkbox" name="checkselect">
<input type="checkbox" name="checkselect">
<input type="submit" value=" " id="submitbtn">
<script>
window.onload=function(){
var checkboxs=document.getElementsByName("checkselect"),submitbtn=document.getElementById("submitbtn");
submitbtn.onclick=function(){
for(var i in checkboxs){ // checkboxs
if(checkboxs[i].checked){
console.log(" ");
return;
}
}
alert(" !");
}
}
</script>
</body>
</html>