Adilson-Colabore Sistemas Posted November 14, 2011 Report Share Posted November 14, 2011 (edited) tenho o seguinte código<html> <head> <script type="text/javascript"> function calcula(){ desconto = document.getElementById("pDesconto").value; total = window.opener.document.getElementById("pTotal").value; total = parseFloat(total); desconto = parseFloat(desconto); totalDes = (total-(total*(desconto/100))); totalDes = totalDes.toFixed(2); window.opener.document.getElementById("pTotald").value = totalDes; } </script> </head> <body> <div class='item'><h5>total:</h5> <input type='text' name='pTotal' id='pTotal' size='6' value='0'> <b id='ok'>*</b><br> <div class='item'><h5>Desconto:</h5> <input type='text' name='pDesconto' id='pDesconto' size='6' value='0' > <b id='ok'>*</b><br> </div> <div class='item'><h5>Total com desconto:</h5> <input type='text' name='pTotald' id='pTotald' size='6' value='0' onblur="calcula()"> <b id='ok'>*</b><br> </div> </body> </html>ele não faz nada. oque está errado?não conheço muito javascript, então se vocês puderem me ajudar... Edited November 14, 2011 by Adilson-Colabore Sistemas Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted November 14, 2011 Report Share Posted November 14, 2011 Olha no console de erros do seu navegador e posta os erros aqui.Um abraço. Quote Link to comment Share on other sites More sharing options...
Question
Adilson-Colabore Sistemas
tenho o seguinte código
ele não faz nada. oque está errado?
não conheço muito javascript, então se vocês puderem me ajudar...
Edited by Adilson-Colabore SistemasLink 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.