在同一页面上多次使用jquery工具提示

时间:2013-09-24 16:01:45

标签: c# javascript jquery asp.net jquery-ui

我在asp.net转发器元素上使用jquery工具提示。

<div class="tooltip" style="display: none">
<div style="text-align: center; font-weight: bold;">
<%# Eval("Name") %><br />
</div>
</div>


$(function () {
    var du = 1000;
    var tooltip;
    $(document).tooltip({
        show:{effect:'slideDown'},
            items: "h5",
            content: function () {
                tooltip = $(this).siblings('.tooltip');
                return tooltip.html();
        }
    });
    });

我现在必须实现帮助功能。应该有一个帮助图标,然后点击         图标弹出窗口应该打开说明,我想再次使用jquery工具提示。         我这次不知道如何实现它,我应该将它包含在上面的相同$ function()中 我应该使用其他功能吗?

如果有任何人有任何想法,请告诉我..

1 个答案:

答案 0 :(得分:0)

你编写它的方式,你不应该再做任何JavaScript。任何具有<h5>类兄弟的tooltip元素都将被激活。你所要做的就是在一个应该激活它的东西旁边放一个.tooltip div。例如:

<ul>
 <li>
   <h5>Here is thing 1.</h5>
   <div class="tooltip" style="display: none">This is tooltip 1.</div>
 </li>
 <li>
   <h5>Here is thing 2.</h5>
   <div class="tooltip" style="display: none">This is tooltip 2.</div>
 </li>
</ul>

如果您希望工具提示适用于h5以外的元素,请修改items选项:

items: "h5, img.help-icon",

确保每个触发器/工具提示对都是兄弟,并确保每对都有一些类型的包装器,以显示哪个工具提示与哪个元素相关。例如,这将 NOT 正常工作:

<li>
  <div>
    <h5>Here is thing 1.</h5>
  </div>
  <div class="tooltip" style="display: none">This won't show up at all!</div>
</li>

这也不会:

<li>
  <h5>Here is thing 1.</h5>
  <div class="tooltip" style="display: none">This will be the text for both tooltips!</div>

  <h5>Here is thing 2.</h5>
  <div class="tooltip" style="display: none">This won't show up at all!</div>
</li>