basic.html 1023 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Basic SwitchButton - 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>Basic SwitchButton</h2>
  14. <p>Click the switchbutton to change its state.</p>
  15. <div style="margin:20px 0;"></div>
  16. <div style="margin-bottom:20px">
  17. <input class="easyui-switchbutton" checked label="Receive mail:" labelWidth="120" tabindex="1">
  18. </div>
  19. <div style="margin-bottom:20px">
  20. <input class="easyui-switchbutton" checked label="Shared network:" labelWidth="120" tabindex="2">
  21. </div>
  22. <div style="margin-bottom:20px">
  23. <input class="easyui-switchbutton" label="Subscribed:" labelWidth="120" tabindex="3">
  24. </div>
  25. </body>
  26. </html>