我正在为我的工具提示使用 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 代码创建一个函数并在鼠标悬停链接按钮操作时调用它?