Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/04/2021, 20:42
pilucho
 
Fecha de Ingreso: noviembre-2004
Ubicación: NULL
Mensajes: 652
Antigüedad: 19 años, 5 meses
Puntos: 6
Respuesta: Multiplicar Cantidad * Precio = Total

se me ocurre que se le podría agregar el símbolo de moneda, pero no se como integrarlo

http://jsfiddle.net/1h29dguy/


Código Javascript:
Ver original
  1. <script>
  2. function FormatCurrency ()
  3. {
  4.     var amount = parseFloat(document.getElementById('amount').value);
  5.    
  6.     document.getElementById('output').innerHTML =
  7.         amount.toLocaleString('en-US', { style: 'currency', currency: 'USD' });
  8. }
  9. </script>