gpt4 book ai didi

c# - asp.net 从 jquery 代码生成函数

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:36:15 26 4
gpt4 key购买 nike

我正在为我的工具提示使用 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>

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

最佳答案

这样做:

<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
}
}
});

关于c# - asp.net 从 jquery 代码生成函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11137621/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com