HTML5 input box with type=“number” does not accept comma in Chrome browser

前端 未结 3 1874
故里飘歌
故里飘歌 2020-12-03 07:15

I am using a HTML5 input box with type=\"number\". Regarding to some documentations, it should be possible to enter a number with comma (not with period) if I a

相关标签:
3条回答
  • 2020-12-03 07:46

    As for now, I have tried

        <html lang="en">
    

    or

        <input type="number" lang="en">
    

    and it let me to input any: comma or period. I have tested it on desktop Ubuntu and mobile Android in Firefox and Chrome.

    0 讨论(0)
  • 2020-12-03 07:53

    actually, if i read the documentation correctly, pattern is not supported for type=number. hence, stick to type=text and then add pattern="..." for the front end validation. in the next step, you will then need to convert the text input into a real number if it wasn't compatible to JavaScript/computing format.

    2017 and still no good solution for this common problem...

    0 讨论(0)
  • 2020-12-03 08:03

    As of now (30/08/2017), Antoine Thiry's answer seems to be no longer valid in Chrome (my version is 60.0.3112.113). Unfortunately I don't have any other suggestion, other than simulating type="number" with javascript.

    0 讨论(0)
提交回复
热议问题