Is there is any possible way to add tool tip on mouse hover of a tag having long text.
例如: -
我有一个名为EveryThingIsPossibleRightHere
的标签目前标签显示为像EveryTh....
我想知道如何在鼠标悬停时显示完整的标签名称,如选择Jquery中的工具提示?
我已经完成了Tooltips for each option of Chosen jQuery plugin,但没有运气。
答案 0 :(得分:0)
通过使用标题属性,可以设置工具提示,如下所示。
<option value="1" title='EveryThingIsPossibleRightHere'>EveryThingIsPossibleRightHere</option>
答案 1 :(得分:0)
使用选择
进行此操作的方法Go to line no 869 of chosen.jquery.js
After "class": "search-choice", Add "title": item.text
In order to show the tool tip
最终守则
choice = $('<li />', {
"class": "search-choice",
"title": item.text
}).html("<span>" + item.html + "</span>");
视图
只需将鼠标悬停在标签上即可查看工具提示