选择是否能够为长文本标记添加工具提示

时间:2015-08-12 06:25:57

标签: javascript php jquery .net jquery-chosen

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,但没有运气。

2 个答案:

答案 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>");

视图
只需将鼠标悬停在标签上即可查看工具提示