-2
I am trying to make a form in html in which it receives age name and sex of a person and make comparisons to see if the past age is greater than the age that is currently mind in the old age textbox (for woman) and old age (for man), if so, will pass the age that was passed in the textbox to one of these textbox depending on the sex of the person, I do not understand mt of html, javascript or css;
Code below:
<html>
<script>
function execucoes()
{
if(form1.nome.value == "" && form1.idade.value == "" && form1.sexo[0].checked == false && form1.sexo[1].checked == false)
{
{alert("Preencha todos os campos!");}
}
else
{
if(parseInt(form1.idademaisvelho.value) < parseInt(form1.idade.value) || parseInt(form1.idademaisvelha.value) < parseInt(form1.idade.value))
{
if(form1.sexo[0].checked == true)
{
form1.nomemaisvelho.value = form1.nome.value;
form1.idademaisvelho.value = form1.idade.value;
}
else
{
form1.nomemaisvelha.value = form1.nome.value;
form1.idademaisvelha.value = form1.idade.value;
}
}
}
}
</script>
<body>
<form name = "form1">
Digite o seu nome: <input type = text name = "nome" value = "">
<br><br>
Sexo: Masculino<input type = radio name = "sexo" value = "">
Feminino<input type = radio name = "sexo" value = "">
<br><br>
Digite a sua idade: <input type = text name = "idade" value = "0">
<input type = button name = "classificar" onclick = "execucoes()" value = "Classificar">
<br><br>
Nome do Homem mais velho: <input type = text name = "nomemaisvelho" value = "" disabled>
Idade do Homem mais velho: <input type = text name = "idademaisvelho" value = "" disabled>
<br><br>
Nome da Mulher mais velha: <input type = text name = "nomemaisvelha" value = "" disabled>
Idade da Mulher mais velha: <input type = text name = "idademaisvelha" value = "" disabled>
</body>
</html>