JS
$(function(){
$("select").multiselect();
$( document ).tooltip();
$( document ).tooltip( "option", "position", { my: "left+20 center", at: "right center" } );
});
HTML
<select multiple="multiple" size="5">
<optgroup label="England">
<option title="example 1" value="London">London</option>
<option title="example 2" value="Leeds">Leeds</option>
<option title="example 3" value="option3">Manchaster</option>
</optgroup>
<optgroup label="USA">
<option title="example 4" value="option4">New York</option>
<option title="example 5" value="option5">Chicago</option>
</optgroup>
</select>
我正在使用 Eric Hynds 的多选小部件以及带有 jQuery 1.9.1 的 jQuery UI 工具提示小部件。
我希望当用户将鼠标悬停在多选小部件中的每个项目上时出现工具提示。为此,我为小部件中的每个选项定义了一个“标题”属性。这工作得很好,除了多选小部件也有它自己的工具提示出现,其中包含每个选项value。因此,每个选项都有两个工具提示。
我想禁用多选的固有工具提示,或者让我自己的工具提示与“标题”之外的另一个属性一起使用(到目前为止,我找不到任何其他可以在标签内使用的属性)。或者,还有其他想法吗?