ba86157e0915d2ae9d390d5413392a4a83b159a5.svn-base 982 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Number Range - jQuery EasyUI Demo</title>
  6. <link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
  7. <link rel="stylesheet" type="text/css" href="../../themes/icon.css">
  8. <link rel="stylesheet" type="text/css" href="../demo.css">
  9. <script type="text/javascript" src="../../jquery.min.js"></script>
  10. <script type="text/javascript" src="../../jquery.easyui.min.js"></script>
  11. </head>
  12. <body>
  13. <h2>Number Range</h2>
  14. <p>The value is constrained to a specified range.</p>
  15. <div style="margin:20px 0;"></div>
  16. <div class="easyui-panel" style="width:400px;padding:20px 100px 60px 100px;">
  17. <p>Amount:</p>
  18. <input class="easyui-numberbox" data-options="min:10,max:90,precision:2,required:true">
  19. <p>Weight:</p>
  20. <input class="easyui-numberbox" data-options="min:10,max:90,required:true">
  21. <p>Age:</p>
  22. <input class="easyui-numberbox" data-options="min:0,max:100,required:true">
  23. </div>
  24. </body>
  25. </html>