-2

嗨,我正在研究所选的 jquery 插件,我需要为所选插件中的所有元素添加工具提示。我尝试在选择中进行调整,但没有得到任何积极的结果。有人有什么主意吗?

代码:

  <div id="synonyms_div" style="height:auto;width:170px;">
     <select id="tagger-tags" class="tagger-tags" multiple style="width:150px; font:7px;" tabindex="4">
                @foreach(var tag in ViewBag.tags)
                {
                    <option id="sel-tags" value="@tag.ID" parent="@tag.PARENT_ID" style="font:6px;">
                        @tag.NAME [@tag.EL_COUNT]
                    </option>
                }               
      </select>
    </div>
<script>
$(document).ready(function () {
    jQuery(".tagger-tags").chosen({ search_contains: true });

});
 </script>
4

2 回答 2

5

这是一个可能的解决方案,无需使用任何其他库或其他任何东西......这可以通过一点 CSS 来完成。

HTML:

<!--// we have to wrap the select in a span to use :after with it //-->
<span class="tooltip" title="some title for your tooltip">
<select>
    <option>Something</option>
    <option>Something Else</option>
</select>
</span>

CSS:

.tooltip:hover:after {
    position: relative;
    /* we can get the title attribute from the relevant item */
    content: "" attr(title) "";
    /* style however you want */
    border: 1px dashed black;
    top: -1.5em;
    left: 12em;
    padding: 0.5em;
}

会给你类似的东西:

选择带工具提示

演示

从字面上将单词添加multiple到选择框中以对其进行修改以适应 OP 的要求...

演示 2

截图 2

于 2013-07-23T19:15:28.653 回答
0

我不确定我是否理解这个问题,但我几乎肯定你想使用这个:http: //jqueryui.com/tooltip/

于 2013-07-23T18:29:31.587 回答