Hola, ahora no me hace nada, en los errores de la consola me sale un error
ReferenceError: event is not defined
if(event.target.checked){
este es el codigo completo
Código PHP:
<html>
<head>
<title>Ejemplo Checkbox</title>
<script>
function alertaChecked(){
if(event.target.checked){
alert('checked');
}else{
alert('unchecked');
}
}
</script>
</head>
<body>
<form>
<input type="checkbox" id="miCheck34" name="miCheck34" value="34" onclick="alertaChecked()">
<input type="checkbox" id="miCheck35" name="miCheck35" value="35" onclick="alertaChecked()">
<input type="checkbox" id="miCheck36" name="miCheck36" value="36" onclick="alertaChecked()">
<input type="checkbox" id="miCheck37" name="miCheck37" value="37" onclick="alertaChecked()">
</form>
</body>
</html>