range.html 909 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Time 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>Time Range</h2>
  14. <p>The time value is constrained in specified range.</p>
  15. <div style="margin:20px 0;">
  16. <span>From 08:30 to 18:00</span>
  17. </div>
  18. <div class="easyui-panel" style="width:100%;max-width:400px;padding:30px 60px;">
  19. <div style="margin-bottom:20px">
  20. <input class="easyui-timespinner" data-options="label:'Select Time:',labelPosition:'top',min:'08:30',max:'18:00'" style="width:100%;">
  21. </div>
  22. </div>
  23. </body>
  24. </html>