如何仅在html5中验证具有百分比的数字字段

时间:2014-06-23 08:36:40

标签: html5

我想验证我的文本框中的输入数字百分比。

my code is here 

<input type="text" name="tenthmarks" required pattern="[0-9%]" />

It's validate only number but i want like this 25% it means enter number with % sign

1 个答案:

答案 0 :(得分:2)

您拥有的表达方式表示数字或%符号 你需要这样的东西:

input type="text" name="tenthmarks" required pattern="[0-9]+%" />

最小1位数和%符号。