HTML 参考手册
HTML <input> max 属性
min 和 max 属性的使用
源代码:
点击运行 »
<form action="demo_form.html"> Enter a date before 1980-01-01: <input type="date" name="bday" max="1979-12-31"> Enter a date after 2000-01-01: <input type="date" name="bday" min="2000-01-02"> Quantity (between 1 and 5): <input type="number" name="quantity" min="1" max="5"> <input type="submit"> </form>
运行结果:
点击运行 »