striptools.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Tabs Strip Tools - 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>Tabs Strip Tools</h2>
  14. <p>Click the mini-buttons on the tab strip to perform actions.</p>
  15. <div style="margin:20px 0;"></div>
  16. <div class="easyui-tabs" style="width:700px;height:250px">
  17. <div title="About" data-options="tools:'#p-tools'" style="padding:10px">
  18. <p style="font-size:14px">jQuery EasyUI framework helps you build your web pages easily.</p>
  19. <ul>
  20. <li>easyui is a collection of user-interface plugin based on jQuery.</li>
  21. <li>easyui provides essential functionality for building modem, interactive, javascript applications.</li>
  22. <li>using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.</li>
  23. <li>complete framework for HTML5 web page.</li>
  24. <li>easyui save your time and scales while developing your products.</li>
  25. <li>easyui is very easy but powerful.</li>
  26. </ul>
  27. </div>
  28. <div title="Help" data-options="iconCls:'icon-help',closable:true" style="padding:10px">
  29. This is the help content.
  30. </div>
  31. </div>
  32. <div id="p-tools">
  33. <a href="javascript:void(0)" class="icon-mini-add" onclick="alert('add')"></a>
  34. <a href="javascript:void(0)" class="icon-mini-edit" onclick="alert('edit')"></a>
  35. <a href="javascript:void(0)" class="icon-mini-refresh" onclick="alert('refresh')"></a>
  36. </div>
  37. </body>
  38. </html>