首页 前端知识 无涯教程-jQuery - Tooltip组件函数

无涯教程-jQuery - Tooltip组件函数

2024-07-20 17:07:32 前端知识 前端哥 855 900 我要收藏

小部件工具提示功能可与JqueryUI中的小部件一起使用。Tooltip用于显示提示。

Tooltip - 语法

$( document ).tooltip();

Tooltip - 示例

以下是显示工具提示用法的简单示例-

<!doctype html>
<html lang="en">
   <head>
      <meta charset="utf-8">
      <title>jQuery UI Tooltip - Default functionality</title>
		
      <link rel="stylesheet" 
         href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
			
      <script src="//code.jquery.com/jquery-1.10.2.js">
      </script>
      <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js">
      </script>
		
      <script>
         $(function() {
            $( document ).tooltip();
         });
      </script>
		
      <style>
         label {
            display: inline-block;
            width: 15em;
         }
      </style>
   </head>

   <body>
      <p><a href="#" title="Tutorials point india Pvt ltd">
         Tutorials point</a> Free tutorials and reference manuals with
         examples for Concordion, 5G, JBPM5, SAP, Agile, SVG, Web Icons, KDB+,
         Web Analytics, Google Maps, Joomla, Self</p>
			
      <p><a href="https://www.learnfk.com/jquery/index.htm"
         title="J Query tutorials"> J Query</a> is a fast and 
         concise JavaScript library created by John Resig in 2006. 
         jQuery simplifies HTML document traversing, event handling,  
         animating, and Ajax interactions for Rapid Web Development.</p>
			
      <p><label for="age">your tutorials details</label>
         <input id="age" title="Please enter your tutorial name. 
         We will search in our data base"></p>
   </body>
</html>

这将产生以下输出-

jQuery 中的 Tooltip组件函数 - 无涯教程网无涯教程网提供小部件工具提示功能可与JqueryUI中的小部件一起使用。Tooltip用于显示提示。 Tooltip...https://www.learnfk.com/jquery/widget-tooltip.html

转载请注明出处或者链接地址:https://www.qianduange.cn//article/13999.html
标签
评论
发布的文章

HTML5 移动开发秘籍(一)

2024-08-05 23:08:12

【HTML5系列教程】

2024-08-05 23:08:12

HTML5面试题

2024-08-05 23:08:06

JQuery基础---01

2024-08-05 23:08:34

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!