编辑你的代码:
<!DOCTYPE html> <html> <body> <form action="/html5/tryit/demo_form"> Enter a date before 1980-01-01: <input type="date" name="bday" max="1979-12-31"><br> Enter a date after 2000-01-01: <input type="date" name="bday" min="2000-01-02"><br> Quantity (between 1 and 5): <input type="number" name="quantity" min="1" max="5"><br> <input type="submit"> </form> <p><strong>注意:</strong> 最大最小属性不支持IE9及以前IE版本,或者火狐浏览器.</p> <p><strong>Note:</strong> 最大最小属性在IE10和IE10以前的版本不支持日期和时间的输入类型.</p> </body> </html>
查看结果:
phpxuexi.net
- 亲自试一试