简体   繁体   中英

How to add automatic dots to prices in HTML?

I'm trying to implement automatic formatting to an web-page. So that when you type 12345678, it is automatically €123.456,78.

      <div class="form-group">
<input type="text" required class="form-control" name="EKBrutto" placeholder="EK-Brutto">

I have no clue how to do this.

You can use the following link to mask money, Especially you are dealing with money

https://plugins.jquery.com/maskMoney/

And this following link is a demo

http://plentz.github.io/jquery-maskmoney/

basically what you have is:

<input type="text" id="currency" />

then you put in this script

<script>
  $(function() {
    $('#currency').maskMoney();
  })
</script>

This automatically puts the dots in place, but there are more parameters to help you just read the guide :)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM