Jquery:如何设置工具提示的宽度与其父div的关系

时间:2014-02-05 19:37:10

标签: jquery-ui

我从jquery-page复制了代码并尝试修改它以调整其父工具提示的大小。我认为代码说明了我想做的事情。 FIDDLE

$( document ).tooltip({
    position: {
        my: "center bottom-20",
        at: "center top",
        using: function( position, feedback ) {
            $( this ).css( position );

            // set width of tooltip
            var w = $(this).closest('div').width();
            $(this).css("width",w);
            $(this).css("max-width",w);

            $( "<div>" )
            .addClass( "arrow" )
            .addClass( feedback.vertical )
            .addClass( feedback.horizontal )
            .appendTo( this );
        }
    }
});

0 个答案:

没有答案