Making a button read functions

0

I'm a beginner in programming and I need help with the function of a button, I do not know how to make that button "read" the old values, the idea of the site is to enter the information to see if the person requires or not retirement

This is a testing function so there is quite a bit missing from this code as the name var

         function verificaAposentadoria()
            {



            var idade = document.getElementById("idade").value;
            var trabalho = document.getElementById("trabalho").value;
            var resultado = document.getElementById("resultado");

                idade = parseInt(idade)
                trabalho = parseFloat(trabalho)
                resultado = parseInt(resultado)
            var saida = "Olá, "+nome+", seu tempo é "+trabalho;

            document.getElementById("resultado").innerHTML = saida;




            if ("trabalho">=60)  
            alert ("Você pode se aposentar")
            }






            </script>
    
asked by anonymous 19.06.2018 / 22:10

1 answer

0

In Html you can do

<button type='button' onclick="verificaAposentadoria()"> Verificar </button>
    
19.06.2018 / 22:35