<html>
<head>
<script>
function comprobarCheckBox(){
if
(document.frm.checkbox1.checked)
alert("PrimeroCheckeado");
if
(document.frm.checkbox2.checked)
alert("SegundoCheckeado");
}
</script>
</head>
<body>
<form
name="frm">
<input type="checkBox" id="checkbox1" value="checkbox1" name="st">Selection A<br>
<input type="checkBox" id="checkbox2" value="checkbox2">Selection B<br>
<input type="button" value="Comprobar" onClick="comprobarCheckBox()">
</form>
</body>
</html>
No hay comentarios:
Publicar un comentario