3

我正在为我的工具提示使用 Qtip jquery 插件,因为我有很多需要这个的项目,所以我不想为每个项目手动执行它,反正编码不好。

这是JS代码:

$('#<%= textlink.ClientID %>').qtip({               
    position: { 
          corner: {
                      target: 'topRight', 
                      tooltip: 'bottomLeft'
            }
              },                                    
        style:{ 
            name: 'dark',
            tip: 'bottomLeft',
            border:
              {
            width: 3,
            radius: 7
        }
    } 
});

<asp:LinkButton ID="textlink" runat="server" Text="some text" ToolTip="some other text"></asp:LinkButton>

我将有很多链接按钮对象,那么如何从上面的 JS 代码创建一个函数并在鼠标悬停链接按钮操作时调用它?

4

2 回答 2

4

做这个:

<asp:LinkButton cssClass="qTip" ID="textlink" runat="server" Text="some text" ToolTip="some other text"></asp:LinkButton>

$('.qTip').qtip({               
    position: { 
          corner: {
                      target: 'topRight', 
                      tooltip: 'bottomLeft'
            }
              },                                    
        style:{ 
            name: 'dark',
            tip: 'bottomLeft',
            border:
              {
            width: 3,
            radius: 7
        }
    } 
});
于 2012-06-21T11:59:26.340 回答
3

在 jQuery上放置一个类LinkButton并使用类选择器

<asp:LinkButton ID="textlink" cssClass="qtip" runat="server" Text="some text" ToolTip="some other text"></asp:LinkButton>
$('.qtip').qtip({               
    //...
});
于 2012-06-21T11:58:04.130 回答