basic.html 867 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Basic Tooltip - 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 Tooltip</h2>
  14. <div class="demo-info">
  15. <div class="demo-tip icon-tip"></div>
  16. <div>Hover the links to display tooltip message.</div>
  17. </div>
  18. <div style="margin:10px 0;"></div>
  19. <p>The tooltip can use each elements title attribute.
  20. <a href="#" title="This is the tooltip message." class="easyui-tooltip">Hover me</a> to display tooltip.
  21. </p>
  22. </body>
  23. </html>