HTML
HTML5 新的 Input 类型
尝试一下带有所有限定属性的例子 尝试一下
源代码:
点击运行 »
<!DOCTYPE html> <html> <body> <form action="demo_form.php" method="get"> <input type="number" name="points" min="0" max="10" step="3" value="6"> <input type="submit"> </form> </body> </html>
运行结果:
点击运行 »