欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery Tools tooltip使用说明

程序员文章站 2022-06-18 16:13:15
html代码如下: jquery tools standalone demo...</div> <div class="content"> <p>html代码如下:</p> <!doctype html><br> <html><br> <head><br> <title>jquery tools standalone demo</title><br> <!-- include the tools --><br> <script src="http://cdn.jquerytools.org/1.2.7/full/jquery.tools.min.js"></script><br> <link rel="stylesheet" type="text/css"<br> href="./tooltip-generic.css"/><br> <style><br> #myform {<br> border:1px outset #ccc;<br> background:#fff repeat-x;<br> padding:20px;<br> margin:20px auto;<br> width:350px;<br> font-size:12px;<br> -moz-border-radius:4px;<br> }<br> #myform h3 {<br> text-align:center;<br> margin:0 0 10px 0;<br> }<br> /* http://www.quirksmode.org/css/forms.html */<br> #inputs label, #inputs input, #inputs textarea, #inputs select {<br> display: block;<br> width: 150px;<br> float: left;<br> margin-bottom: 20px;<br> }<br> #inputs label {<br> text-align: right;<br> width: 75px;<br> padding-right: 20px;<br> }<br> #inputs br {<br> clear: left;<br> }<br> </style><br> </head><br> <body><form id="myform" action="#"><br> <h3>registration form</h3><br> <p id="inputs"><br> <!-- username --><br> <label for="username">username</label><br> <input id="username" title="must be at least 8 characters."/><br> <br /><br> <!-- password --><br> <label for="password">password</label><br> <input id="password" type="password" title="make it hard to guess." /><br> <br /><br> <!-- email --><br> <label for="email">email</label><br> <input id="email" title="we won't send you any marketing material." /><br> <br /><br> <!-- message --><br> <label for="body">message</label><br> <textarea id="body" title="what's on your mind?"></textarea><br> <br /><br> <!-- message --><br> <label for="where">select one</label><br> <select id="where" title="select one of these options"><br> <option>-- first option --</option><br> <option>-- second option --</option><br> <option>-- third option --</option><br> </select><br> <br /><br> </p><br> <!-- email --><br> <label><br> i accept the terms and conditions<br> <input type="checkbox" id="check" title="required to proceed" /><br> </label><br> <p><br> <button type="button" title="this button won't do anything"><br> proceed<br> </button><br> </p><br> </form><br> <!-- javascript coding --><br> <script><br> // execute your scripts when the dom is ready. this is a good habit<br> $(function() {<br> // select all desired input fields and attach tooltips to them<br> $("#myform :input").tooltip({<br> // place tooltip on the right edge<br> position: "center right",<br> // a little tweaking of the position<br> offset: [-2, 10],<br> // use the built-in fadein/fadeout effect<br> effect: "fade",<br> // custom opacity setting<br> opacity: 0.7<br> });<br> });<br> </script><br> </body><br> </html><br><a href="https://www.2cto.com/kf/qianduan/css/" target="_blank" class="keylink" rel="nofollow">css</a><br><p class="codetitle"><span onclick="docopy('code11391')" style="cursor: pointer"><u>.</u></span> 代码如下:</p> <p class="codebody" id="code11391"><br> /* simple css-based tooltip */<br> .tooltip {<br> background-color:#000;<br> border:1px solid #fff;<br> padding:10px 15px;<br> width:200px;<br> display:none;<br> color:#fff;<br> text-align:left;<br> font-size:12px;<br> /* outline radius for mozilla/firefox only */<br> -moz-box-shadow:0 0 10px #000;<br> -webkit-box-shadow:0 0 10px #000;<br> }</p> <br> css可以不需要,这样显示的样子恶心了点。<br> 关键代码:<br><p class="codetitle"><span onclick="docopy('code89365')" style="cursor: pointer"><u>.</u></span> 代码如下:</p> <p class="codebody" id="code89365"><br> // select all desired input fields and attach tooltips to them<br> $("#myform :input").tooltip({<br> // place tooltip on the right edge<br> position: "center right",<br> // a little tweaking of the position<br> offset: [-2, 10],<br> // use the built-in fadein/fadeout effect<br> effect: "fade",<br> tipclass:'tooltip', // 省却值:tooltip,少了这一行效果也是一样<br> // custom opacity setting<br> opacity: 0.7<br> });</p> <br> 使用<br> 这里是可能存在的最简单的工具提示的初始化:<br><br> $("#myform :input").tooltip();配置<br><table class="jbborder"> <thead><tr> <th> <span>属性</span> </th> <th> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-67">默认值 </span> </th> <th> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-68">描述 </span> </th> </tr></thead> <tbody> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-69">canceldefault </span></td> <td><span style="font-family: monospace"><code>true</code></span></td> <td> <strong><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-71">自从1.1.0版。 </span></strong><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-72">当工具提示内容抓取 从 </span><samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-73">标题 </span></samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-74">触发器元素的属性 这个属性取消默认工具提示执行的行为 。 这是通过简单的移除 这个 </span><samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-75">标题 </span></samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-76">属性从触发器。 </span> <p><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-77">你仍然可以检索/修改标题值通过调用 jquery的 </span><samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-78">数据('title') </span></samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-79">方法为触发。 </span></p> </td> </tr> <tr> <td class="code">effect</td> <td><span style="font-family: monospace"><code>'toggle'</code></span></td> <td> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-82">指定了如何显示和隐藏的提示。 有两个 内置的效果,可以用作值: </span> <p><strong><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-83"><span>toggle</span> </span></strong><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-84">。 一个简单的显示/隐藏效果。 这是 默认 </span></p> <p><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-85">fade </span><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-86">。 一个简单的淡入/淡出效果 </span></p> <p><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-87">还有一个 </span><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-88">幻灯片效果 </span><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-89">不 包括在该工具本身。 你可以 </span><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-90">构建 你自己的</span><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-91">。 </span></p> </td> </tr> <tr> <td class="code">delay</td> <td><code><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-93">30 </span></code></td> <td><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-94">指定工具提示依然可见多久后鼠标 叶子触发器。 这是必需的,如果tootip已 互动的内容和用户将需要时间去 tootip区域。 通过设置0工具提示也会消失 鼠标离开就从触发器元素。 </span></td> </tr> <tr> <td class="code">events</td> <td><span style="font-family: monospace"><code>object</code></span></td> <td> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-97">一个配置对象,它指定当工具提示会 显示和隐藏。 您可以指定不同的事件不同 类型的元素。 这里有默认值为这个 属性: </span> <p class="codebox"> </p> <p class="highlight"> </p> <pre class="brush: javascript;"> events: { def: "mouseover,mouseout", input: "focus,blur", widget: "focus mouseover,blur mouseout", tooltip: "mouseover,mouseout" } </pre> <br><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-98"><a href="https://www.2cto.com/kf/ware/java/" target="_blank" class="keylink" rel="nofollow">java</a>script </span> <p><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-99">你可以更多关于这方面的内容这个 </span><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-100">事件管理 </span><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-101">一章。 </span></p> </td> </tr> <tr> <td class="code">layout</td> <td><span style="font-family: monospace"><code>'<p/>'</code></span></td> <td> <strong><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-104">自从1.2.0 </span></strong><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-105">html布局为生成的工具提示。 可以很复杂的html布局如你所愿。 你可以,例如,添加一个嵌套的 </span><samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-106">跨度 </span></samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-107">元素作为箭的占位符。 </span> </td> </tr> <tr> <td class="code">offset</td> <td><span style="font-family: monospace"><code>[0, 0]</code></span></td> <td> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-110">精细地调节工具提示指定位置这个 </span><samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-111">位置 属性</span></samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-112">。 看到这个 </span><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-113">定位细节 </span><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-114">更多的信息。 </span> </td> </tr> <tr> <td class="code">opacity</td> <td><code><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-116">1 </span></code></td> <td><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-117">透明的工具提示。 例如,0意味着不可见, 1意味着没有透明度(完全可见)和0.4意味着40% 工具提示显示的。 如果你的工具提示使用css背景图像,你可以设置透明度的形象,如果它已经保存在png24图形格式。 记住,互联网 ie 6不支持原生透明的png。 </span></td> </tr> <tr> <td class="code">position</td> <td nowrap><span style="font-family: monospace"><code>'top center'</code></span></td> <td> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-120">指定位置的工具提示。 看到这个 </span><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-121">定位细节 </span><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-122">更多的信息。 旧的格式:<samp>['top', 'center']</samp></span><samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-123"> </span></samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-124">是废弃,在未来将会被移除。 </span> </td> </tr> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-125">predelay </span></td> <td><code><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-126">0 </span></code></td> <td> <strong><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-127">自从1.1.0版。 </span></strong><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-128">指定了延迟(在毫秒)工具提示显示之前。 默认情况下有没有延迟。 </span> </td> </tr> <tr> <td class="code">relative</td> <td><span style="font-family: monospace"><code>false</code></span></td> <td> <strong><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-131">自从1.1.1。 </span></strong><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-132">默认情况下,工具提示位置现在决定相对于文档(通过使用这个 <span>relative</span></span><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-134">)的方法。 通过启用这个产权工具提示的位置是相对确定的父元素 </span> </td> </tr> <tr> <td class="code">tip</td> <td> </td> <td> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-136">一个jquery选择器为一个单一的工具提示的元素。 对于示例 </span><samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-137"># mytip </span></samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-138">。 该选项仅有效如果你要手动定义一个工具提示多个触发器同时元素。 因为1.2.5 </span><samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-139">标题 </span></samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-140">属性仍然可以被用作工具提示内容。 </span> </td> </tr> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-141">tipclass </span></td> <td><span style="font-family: monospace"><code>'tooltip'</code></span></td> <td> <strong><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-143">自从1.2.0。 </span></strong><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-144">css类名生成的工具提示的元素。 </span> </td> </tr> </tbody> </table> 事件<br> 确保你已经阅读 大约 事件 jquery工具 。 所有事件监听器接收 这个 事件 对象 作为第一个参数。<br><table class="jbborder"> <thead><tr> <th> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-168">事件 </span> </th> <th nowrap> 触发事件</th> </tr></thead> <tbody> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-170">onbeforeshow </span></td> <td> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-171">在工具提示显示。 第二个参数是工具提示 要使用位置。 这是一个对象的值<samp>{top: integer, left: integer}</samp></span><samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-172"> </span></samp> </td> </tr> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-173">onshow</span></td> <td><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-174">在工具提示显示。 </span></td> </tr> <tr> <td class="code">onbeforehide</td> <td><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-176">在工具提示是隐藏的 </span></td> </tr> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-177">onhide </span></td> <td><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-178">当这个工具提示是隐藏的。 </span></td> </tr> </tbody> </table> 下面的示例是一个onshow 回调函数, 淡出触发器元素当工具提示显示:<br><p class="codetitle"><span onclick="docopy('code28886')" style="cursor: pointer"><u>.</u></span> 代码如下:</p> <p class="codebody" id="code28886"><br> $("label").tooltip({<br> // change trigger opacity slowly to 0.8<br> onshow: function() {<br> this.gettrigger().fadeto("slow", 0.8);<br> }<br> });</p> <br> 事件管理<br> jquery工具提示可以让你完全控制 当 工具提示 将显示或隐藏。 您可以指定不同的事件 不同类型的元素。 你可以控制这种行为 这个 事件 配置变量,它具有以下 默认值:<br><p class="codetitle"><span onclick="docopy('code10323')" style="cursor: pointer"><u>.</u></span> 代码如下:</p> <p class="codebody" id="code10323"><br> events: {<br> def: "mouseenter,mouseleave", // default show/hide events for an element<br> input: "focus,blur", // for all input elements<br> widget: "focus mouseenter,blur mouseleave", // select, checkbox, radio, button<br> tooltip: "mouseenter,mouseleave" // the tooltip element<br> }</p> <br> 脚本 api<br> 首先确保你已经了解你自己 与 jquery工具 脚本 。<br><br> 以下列出的是所有api方法:<br><table class="jbborder"> <thead><tr> <th> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-251">方法 </span> </th> <th nowrap> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-252">返回值 </span> </th> <th> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-253">描述/例子 </span> </th> </tr></thead> <tbody> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-254">show() </span></td> <td><code><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-255">api </span></code></td> <td><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-256">显示工具提示。 </span></td> </tr> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-257">hide() </span></td> <td><code><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-258">api </span></code></td> <td><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-259">隐藏工具提示。 </span></td> </tr> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-260">isshown(fully) </span></td> <td><code><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-261">布尔 </span></code></td> <td> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-262">返回 </span><samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-263">真正的 </span></samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-264">如果这个工具提示是可见的。 自从1.2.0 你也可以使用一个布尔型参数,保证了 函数返回 </span><samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-265">真正的 </span></samp><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-266">只有当这个工具提示是充分的 可见(在它的最终位置和不透明性)。 </span> </td> </tr> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-267">gettip() </span></td> <td><code><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-268">jquery </span></code></td> <td><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-269">返回tooltip作为一个jquery对象。 </span></td> </tr> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-270">gettrigger() </span></td> <td><code><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-271">jquery </span></code></td> <td><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-272">返回元素作为一个jquery对象的触发。 </span></td> </tr> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-273">getconf() </span></td> <td><code><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-274">对象 </span></code></td> <td><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-275">返回工具提示配置。 </span></td> </tr> </tbody> </table> 内置的效果: fade<br> 内置的效果“渐”有它自己的一组配置选项 如下:<br><table class="jbborder"> <thead><tr> <th> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-279">属性 </span> </th> <th> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-280">默认值 </span> </th> <th> <span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-281">描述 </span> </th> </tr></thead> <tbody> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-282">fadeinspeed </span></td> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-283">400</span></td> <td><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-284">淡入时速度显示工具提示,以毫秒为单位。 </span></td> </tr> <tr> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-285">fadeoutspeed </span></td> <td class="code"><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-286">200</span></td> <td><span class="outfox_jtr_trans_node" id="outfox_jtr_trans_node-287">当工具提示的淡出速度是隐藏着的,以毫秒为单位。</span></td> </tr> </tbody> </table> <br> 下面有个自定义事件的例子:<br>   tab:传送门<br>   tab(幻灯片):传送门<br>   tooltip:传送门<br>   overlay:传送门<br>   dateinput:传送门<br> 在携程做着framework2.0,研究的却是framework4.0,当时是怎么想的t.t。<br> </div> <div class="info-pre-next"> <p> 上一篇: <a href="/article/1443631.html"> Python编程Day3—基本运算符、数据类型 </a> </p> <p> 下一篇: <a href="/article/1443633.html"> js的数据类型 </a> </p> </div> <div class="wz_tuijian"> <p> 推荐阅读 </p> <ul> <li> <a href="/article/2070762.html" target="_blank" title="jQuery探测位置的提示弹窗(toolTip box)详细解析"> <h2> jQuery探测位置的提示弹窗(toolTip box)详细解析 </h2> </a> </li> <li> <a href="/article/1990938.html" target="_blank" title="jquery.validate的使用说明介绍"> <h2> jquery.validate的使用说明介绍 </h2> </a> </li> <li> <a href="/article/1764315.html" target="_blank" title="jquery validation使用说明"> <h2> jquery validation使用说明 </h2> </a> </li> <li> <a href="/article/1718476.html" target="_blank" title="基于JQuery 选择器使用说明介绍"> <h2> 基于JQuery 选择器使用说明介绍 </h2> </a> </li> <li> <a href="/article/1604341.html" target="_blank" title="Jquery实现自定义tooltip示例代码"> <h2> Jquery实现自定义tooltip示例代码 </h2> </a> </li> <li> <a href="/article/1538550.html" target="_blank" title="jQuery-Tools-overlay 使用介绍"> <h2> jQuery-Tools-overlay 使用介绍 </h2> </a> </li> <li> <a href="/article/1473608.html" target="_blank" title="Jquery上传插件 uploadify v3.1使用说明"> <h2> Jquery上传插件 uploadify v3.1使用说明 </h2> </a> </li> <li> <a href="/article/1443632.html" target="_blank" title="jQuery Tools tooltip使用说明"> <h2> jQuery Tools tooltip使用说明 </h2> </a> </li> <li> <a href="/article/1390373.html" target="_blank" title="jQuery Tools tab使用介绍"> <h2> jQuery Tools tab使用介绍 </h2> </a> </li> <li> <a href="/article/1382745.html" target="_blank" title="jquery+CSS创建自定义的a标签title提示tooltip示例"> <h2> jquery+CSS创建自定义的a标签title提示tooltip示例 </h2> </a> </li> </ul> </div> </article> </div> </main> <footer><div class="box"><div class="ft_nav"><div class="ft_about"><p>关于网站</p><ul><li><a href="/sitemap.xml" target="_blank" title="网站地图">网站地图</a></li><li><a href="/list/2/" title="最新程序员文章站">最新程序员文章站</a></li></ul></div><div class="ft_contact"><ul><li>本站所有数据收集于网络如有侵犯到您的权益,请联系我们进行下架处理。</li><li class="email_show"></li></ul></div></div><div class="copyright"><div class="cr_left"><p> 备案号:<a href="https://beian.miit.gov.cn/#/Integrated/index" target="_blank">粤ICP备20058927号</a></p><p>© Copyright © 2020-2022 www.superweb999.com 程序员文章站. </p></div></div></div></footer> </body> </html>