rm replacing decimal separator

as html5 input type takes care of this already
This commit is contained in:
vv01f 2023-03-28 11:27:14 +02:00
parent 7c31eb5458
commit b864880c5c

View File

@ -6,7 +6,6 @@
</style> </style>
</head> </head>
<body> <body>
<p>Bei Eingaben werden Komma und Punkt als Dezimaltrennzeichen betrachtet.</p>
<table> <table>
<tr><td>Ausgangsbetrag:</td><td><input type="radio" name="b" value="e" id="bb" class="bb" checked="checked"/><label for="bb">Brutto</label><input type="radio" name="b" value="b" id="bn" class="bb"/><label for="bn">Netto</label><input type="radio" name="b" value="k" id="bk" class="bb"/><label for="bk">KoLe</label></td></tr> <tr><td>Ausgangsbetrag:</td><td><input type="radio" name="b" value="e" id="bb" class="bb" checked="checked"/><label for="bb">Brutto</label><input type="radio" name="b" value="b" id="bn" class="bb"/><label for="bn">Netto</label><input type="radio" name="b" value="k" id="bk" class="bb"/><label for="bk">KoLe</label></td></tr>
<tr><td>Brutto</td><td><input type="number" step="0.01" id="e" value="100.00"/>&thinsp;</td></tr> <tr><td>Brutto</td><td><input type="number" step="0.01" id="e" value="100.00"/>&thinsp;</td></tr>
@ -28,7 +27,7 @@
var s = document.getElementById('b'); var s = document.getElementById('b');
function getFormFloat(f){ function getFormFloat(f){
return parseFloat(f.value.replace(/,/g, '.').replace(/ /g, '')); return parseFloat(f.value);
} }
function roundCents(f){ function roundCents(f){
return Math.round( f * 100 ) / 100; return Math.round( f * 100 ) / 100;