Jquery 插件 qtip 帮助
我正在使用 JQuery 插件 qtip 在 ASP.NET 应用程序中显示工具提示。 这是我的代码:
$("ul li").css("width","90px");
$('ul li').each(function(){
$(this).qtip({
content: $(this).attr("title"),
show: 'mouseover',
hide: 'mouseout',
position:{
corner:{
target:'topRight',
tooltip: 'bottomLeft'
}
},
style:{
width:150,
padding:5,
background: '#A2D959',
color: 'black',
textAlign: 'left',
border: {
width: 0,
radius: 7,
color: '#A2D959'
},
tip: 'bottomLeft',
name: 'dark'
}
})
});
<ul>
<br />
<li title="This is Item no. 1"><a>menu item111</a><br />
<li title="This is Item no. 2"><a>menu item2222</a><br />
<li title="This is Item no. 3"><a>menu item3333</a><br />
</ul>
<ul>
<br />
<li title="This is Item no. 4"><a>menu item4444</a><br />
<li title="This is Item no. 5"><a>menu item5555</a><br />
<li title="This is Item no. 6"><a>menu item6666</a><br />
</ul>
如果我将光标移到任何 li 上,则 qtip 工具提示和内置 html 工具提示都会显示,但我只想显示 qtip 工具提示。我该怎么做。
您还可以从给定的图像中获得帮助。 谢谢
I am using JQuery plugin qtip for displaying tooltip in asp.net application.
Here is my code:
$("ul li").css("width","90px");
$('ul li').each(function(){
$(this).qtip({
content: $(this).attr("title"),
show: 'mouseover',
hide: 'mouseout',
position:{
corner:{
target:'topRight',
tooltip: 'bottomLeft'
}
},
style:{
width:150,
padding:5,
background: '#A2D959',
color: 'black',
textAlign: 'left',
border: {
width: 0,
radius: 7,
color: '#A2D959'
},
tip: 'bottomLeft',
name: 'dark'
}
})
});
<ul>
<br />
<li title="This is Item no. 1"><a>menu item111</a><br />
<li title="This is Item no. 2"><a>menu item2222</a><br />
<li title="This is Item no. 3"><a>menu item3333</a><br />
</ul>
<ul>
<br />
<li title="This is Item no. 4"><a>menu item4444</a><br />
<li title="This is Item no. 5"><a>menu item5555</a><br />
<li title="This is Item no. 6"><a>menu item6666</a><br />
</ul>
If i move cursor over any li then both qtip tooltip and inbuilt html tooltip are displaying but i only want to display qtip tooltip.How can i do that.
You can also get help from given image.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在创建 qtip 后通过
.removeAttr()< 删除该
title
属性/code>,像这样:
You can remove that
title
attribute after creating the qtip via.removeAttr()
, like this:将 title 属性重命名为其他名称,例如 customtitle
并使用
rename the title attribute to something else like customtitle
and use
的更改
关于
Wazzy
Changes
with regards
Wazzy