这是否可以将 twitter bootstrap 的工具提示限制为仅显示一个实例?例子:
<div class="d1" title="d1">
<div class="d2" title="d2">
<div class="d3" title="d3"/>
</div>
</div>
$('.d1').tooltip({delay: {show: 1500, hide: 0}, html: true, container: '.content'});
$('.d2').tooltip({delay: {show: 1500, hide: 0}, html: true, container: '.content'});
$('.d3').tooltip({delay: {show: 1500, hide: 0}, html: true, container: '.content'});
问题是鼠标悬停在 div d3 上时会显示所有工具提示。有没有办法阻止其他工具提示出现?