jQuery UI 的工具提示框(Tooltip)是一个用于在用户界面中显示简短信息的组件。以下是一个简单的例子,演示如何使用 jQuery UI 的工具提示框:

首先,确保你已经包含了 jQuery 和 jQuery UI 的库。你可以在头部添加如下代码:
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Tooltip Example</title>
  <!-- 引入 jQuery 和 jQuery UI 的库 -->
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <script src="https://code.jquery.com/jquery-3.6.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>

<!-- 创建一个带有工具提示的元素 -->
<button id="tooltipBtn" title="这是一个工具提示">Hover 这里</button>

<script>
  // 使用 jQuery UI 的工具提示框
  $(function() {
    // 初始化工具提示
    $("#tooltipBtn").tooltip();
  });
</script>

</body>
</html>

在这个例子中,我们创建了一个按钮(id 为 "tooltipBtn"),并使用 title 属性设置了工具提示的文本内容。通过 $("#tooltipBtn").tooltip(); 初始化工具提示。

当用户将鼠标悬停在按钮上时,将显示工具提示框,显示设置的文本内容。你可以根据实际需求将工具提示应用到其他元素,并调整工具提示的样式和行为。


转载请注明出处:http://www.zyzy.cn/article/detail/13071/jQuery UI