Home > front end >  Input input limit allowed only two positive integers and retain two decimal places such as: 99.99
Input input limit allowed only two positive integers and retain two decimal places such as: 99.99

Time:10-27

Input input limit allowed only two positive integers and retain two decimal places such as: 99.99

CodePudding user response:

The pattern="[0-9] [0-9] + \. [0-9] {2} $"


  • Related