basic.html 767 B

1234567891011121314151617181920
  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. <p>Hover the links to display tooltip message.</p>
  15. <div style="margin:20px 0;"></div>
  16. <p>The tooltip can use each elements title attribute.
  17. <a href="#" title="This is the tooltip message." class="easyui-tooltip">Hover me</a> to display tooltip.
  18. </p>
  19. </body>
  20. </html>