我的输入字段应仅接受以下格式:number (4 characters max) - number (11 characters max)
。我有这个模式,但是不会强迫用户以这种格式输入数字,例如:3453-24
代码如下:
<input type="text" name="search_value" id="search_value" placeholder="Example: 0421-055" pattern="[0-9]+([-][0-9]+)?" title="ID allows dash and numeric characters only" maxlength="12" required="required">
是否可以使用模式正则表达式验证这种输入?
答案 0 :(得分:1)