Advertisement
angeldp

opos2004

Apr 12th, 2018
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.09 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4.     function convertir(){
  5.         var accion = document.getElementById("selector");
  6.         var cantidad = document.getElementById("importe").value;
  7.         if (accion.value=="p2e"){
  8.             document.getElementById("resultado").value =
  9.     Math.round(parseInt(cantidad) / 166.386);
  10.         }
  11.         if (accion.value=="e2p"){
  12.             document.getElementById("resultado").value =
  13.     Math.round(parseInt(cantidad) * 166.386);
  14.         }
  15.     }
  16. </script>
  17. </head>
  18. <body>
  19. <form name="conversor">
  20. <table border=0>
  21. <tr>
  22.   <td><label for="importe">Importe a convertir</label></td><td><input type="text" name="importe" id="importe" /></td>
  23. </tr>
  24. <tr>
  25.   <td><label for="resultado">Resultado</label></td><td><input type="text" name="resultado" id="resultado" /> </td>
  26. </tr>
  27. <tr>
  28.   <td colspan=2>
  29.     <select id="selector">
  30.         <option value="p2e">Pesetas a euros</option>
  31.         <option value="e2p">Euros a pesetas</option>
  32.     </select>
  33.   </td>
  34. </tr>
  35. <tr>
  36.   <td align="center" colspan=2><input type="button" value="Convertir"
  37.        onClick="convertir()" /></td>
  38. </tr>
  39. </table>
  40. </form>
  41.  
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement