我对表格中的输入有要求...我的有效值为数字或“无最小值”或“无最大值”。现在我可以将模式用于字符串值或数字,但不能同时使用...我的问题是如何在 html 5 输入标签中使用多个模式...我也在使用 jQuery...
<form id="form_searchProperty" >
<div class="criteria_block">
<span><label class="search_form_Label" for="propbath">Bathroom</label></span>
<span>
<input id="input_propbath_min" value="No Min" pattern ="\d+" name="Min_Bathrooms" style="width:75px;"/>
<input id="input_propbath_max" value="No Max" pattern ="\d+" name="Max_Bathrooms" style="width:75px;" />
</span>
</div>
</form>