footer.html 848 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Panel Footer - 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>Panel Footer</h2>
  14. <p>The panel footer is displayed at the bottom of the panel and can consist of any other components.</p>
  15. <div style="margin:20px 0 10px 0;"></div>
  16. <div class="easyui-panel" title="Panel Footer" style="width:700px;height:200px;" data-options="footer:'#footer'">
  17. </div>
  18. <div id="footer" style="padding:5px;">
  19. Footer Content.
  20. </div>
  21. </body>
  22. </html>