我如何请求将特定时间的特定数字插入输入元素?
我需要要求用户在文本或密码字段中以任何格式输入某个数字的三次,比如数字 9。
我怎么能用 HTML5 或任何其他方式做到这一点?
如果我有这个代码:
<td><input type="password" name="password" maxlength="9" pattern="\d+" title="9 numbers only" placeholder="9 numbers only" value="<?php echo htmlentities($password); ?>" /></td>
然后,我需要的模式作为例子:(“x”是任何数字)
xxx999xxx
或:x9x9x9xxx
或:9xxx9xxx9
或:x9xxxx99x
格式无关紧要,每次插入3次数字9即可。