Para aplicar uma logica de if dentro de radio buttons meus id's precisam ser distintos ? Ou há outra forma de fazer ?
E como eu poderia fazer a chamada ao marcar o radio button ?Com submit, simulando o envio, mas como chamaria a função? no onclick ? Eu colocaria aquele js dentro de uma funçao e o chamaria, ao inves de history.go(0) ?
html
<!DOCTYPE html>
<html>
<header>
<title>JS</title>
</header>
<body>
<form method="post" action="#">
<input type="radio" name="gender" id="other" value="other" hidden> Informe seu sexo <br>
<input type="radio" name="gender" id="male" value="Masculino"> Masculino<br>
<input type="radio" name="gender" id="female" value="Feminino"> Feminino<br>
<input type="button" Value="Enviar" onClick="history.go(0)">
</form>
<script src="exer_cap11.js"></script>
</body>
</html>
js
if (document.getElementById('male').checked) {
alert(document.getElementById('male').value)
} else if (document.getElementById('female').checked) {
alert(document.getElementById('female').value)
}