Jheliton Posted April 15, 2015 Report Share Posted April 15, 2015 Bom dia, Estou com alguma dificuldade para aplicar essa operação matemática no JavaScrip: <html> <head> <script type="text/javascript"> function somarValores(){ var parede = document.getElementById("parede").value; var largura = document.getElementById("largura").value; var s3 = parseInt(('parede' + 500) * parseInt(largura) + parseInt(parede) * 0,024/1000); alert(s3); } </script> </head> <body> <form> <fieldset> <legend>Soma</legend> <label>Valor 1:</label> <input id="parede" type="text"/> <label>Valor 2: </label> <input id="largura" type="text"/> <button id="somar" onclick="somarValores()">Somar</button> <input id "limpar" type="reset" value="Limpar"> </fieldset> </form> </body> </html> alguém sabe dizer qual problema? seria na hora que montar o algoritmo da operação? Obrigado desde já. Quote Link to comment Share on other sites More sharing options...
0 wootzor Posted April 15, 2015 Report Share Posted April 15, 2015 Não sei que cálculos pretendes fazer, mas tens um erro no código: parede é uma váriavel e estás a tentar utilizá-la como string na soma. Experimenta substituir a variável s3 por: var s3 = parseInt((parede + 500) * (largura) + (parede) * 0.024/1000); Quote Link to comment Share on other sites More sharing options...
Question
Jheliton
Bom dia,
Estou com alguma dificuldade para aplicar essa operação matemática no JavaScrip:
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.