我从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 );
}
}
});