当word在不同的行时,jquery ui tooltip奇怪的行为

时间:2014-03-27 10:10:49

标签: javascript jquery jquery-ui jquery-tooltip jquery-ui-tooltip

我正在实现jquery ui工具提示。它工作得非常好,但是当我悬停在的元素位于2个不同的行中时,它会进入它们的中间....是否有任何方法可以自定义此行为?

我知道一种可能性是使用track:true我不想使用这个......

Here is my jsfiddle,

" Spice Girls"是具有奇怪行为的工具提示。

$(function () {
$(document).tooltip({
    items: ".oolinks",

    tooltipClass: "tooltip-position",
    content: function () {
        return "<div class='hi'>Hi There.</div>";
    },
    position: {
        my: "bottom-20",
        at: "top",
        using: function (position, feedback) {
            $(this).css(position);
            $("<div>")
                .addClass("arrow")
                .addClass(feedback.vertical)
                .addClass(feedback.horizontal)
                .appendTo(this);
            $('.ui-tooltip-content').click(function (e, ui) {

            });
        }
    },
});});

2 个答案:

答案 0 :(得分:0)

为什么不像这里一样重新定位br标签:

<strong>The <br/><culink class="oolinks" lang="en" href="http://undefined/en/topic/Spice Girls" style="color:rgb(34, 34, 34)!important;font-size:15px!important;font-weight:bold!important;border-bottom-color:#4de3ce!important">Spice Girls</culink> </strong>about going on a joint<br/>international tour.

答案 1 :(得分:0)

我认为你能做的最好的事情是为每个单词应用两个工具提示,即'Spice'和'Girls'。

<strong>The <culink class="oolinks" lang="en" href="http://undefined/en/topic/Spice Girls" style="color:rgb(34, 34, 34)!important;font-size:15px!important;font-weight:bold!important;border-bottom-color:#4de3ce!important">Spice </culink> <culink class="oolinks" lang="en" href="http://undefined/en/topic/Spice Girls" style="color:rgb(34, 34, 34)!important;font-size:15px!important;font-weight:bold!important;border-bottom-color:#4de3ce!important">Girls </culink> </strong>

这是fiddle