这是我previous question的后续行动.
我需要动态地放置Bootstrap工具提示.为此,我需要知道触发工具提示的元素的位置(正常工作)和应该显示的工具提示的宽度:
编辑以澄清:
我的工具提示是动态生成的,然后插入到内容中.例如,如果它们太靠近屏幕的左边缘,我需要将它们放置在“右边”而不是“顶部”.现在我想得到工具提示的宽度,只有当它实际出现在屏幕外时才“正确”.
$('body').tooltip({
delay: { show: 300, hide: 0 },
selector: '[rel=tooltip]:not([disabled])',
placement: function(tip, element) {
var offsetLeft = $(element).offset().left;
var offsetRight = ( $(window).width() - ( offsetLeft + $(element).outerWidth() ) );
// need help here: how to get the width of the current tooltip?
// currently returns "0" for all elements
var tooltipWidth = $(tip).outerWidth();
console.log(tooltipWidth);
if (offsetLeft < 220) {
return 'right';
}
if (offsetRight < 220) {
return 'left';
}
else {
return 'top';
}
}
});
提前致谢.
解决方法:
从逻辑的角度来看,这是不可能的:)想一想 – 工具提示调用放置函数来获取它的位置,然后它将提示插入页面并设置样式.
但是,您可以创建一个与即将到来的尖端具有相同功能的虚拟尖端,并通过它获得宽度.像这样 :
$('body').tooltip({
delay: { show: 300, hide: 0 },
placement: function(a, element) {
//title is by tooltip moved to data-original-title
var title=$(element).attr('data-original-title');
//create dummy, a div with the same features as the tooltïp
var dummy=$('<div class="tooltip">'+title+'</div>').appendTo('body');
var width=$(dummy).width();
dummy.remove();
//now you have width
//..
//..
var position = $(element).position();
if (position.left > 515) {
return "left";
}
if (position.left < 515) {
return "right";
}
if (position.top < 110){
return "bottom";
}
return "top";
},
selector: '[rel=tooltip]:not([disabled])'
});