03/04/2019, 15:47
|
| Me alejo de Omelas | | Fecha de Ingreso: mayo-2004 Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años, 5 meses Puntos: 834 | |
Respuesta: Sacar valor de radio button De acuerdo, prueba esto:
Código:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Documento sin título</title>
</head>
<body>
<input type="radio" value="1" name="elegirparadalist" class="elegirparadalist">
<input type="radio" value="2" name="elegirparadalist" class="elegirparadalist">
<input type="radio" value="3" name="elegirparadalist" class="elegirparadalist">
<input type="radio" value="4" name="elegirparadalist" class="elegirparadalist">
<script>
var chs =[].slice.call(document.querySelectorAll('input[name="elegirparadalist"]'));
chs.forEach(function(e){
e.addEventListener(
'change',
function(){
this.checked && console.log(this.value);
}
);
});
</script>
</body>
</html>
|