我有工具提示设置来显示我的验证消息,到目前为止,除了一种情况外,它们运行良好。我有一组单选按钮,从是/否中选择是是强制性的。所以我已经设置了一个 jquery 验证方法。当我通过 firebug 进行调试时,我可以看到验证正在发生,但闪烁的消息在旁边是选项,它完全掩盖了否选项,因为它位于它之上。
这是它的外观
这是我的工具提示器配置如何查找单选按钮
$('#iWatchEnabled').tooltipster({
trigger: 'custom', // default is 'hover' which is no good here
onlyOne: false, // allow multiple tips to be open at a time
position: 'right', // display the tips to the right of the element
theme: '.tooltipster-shadow',
left:' 850px'
});
最后一个左边:'850px' 是试图覆盖我通过萤火虫看到的位置。
这是单选按钮工具提示的萤火虫详细信息
<div class="tooltipster-base tooltipster-shadow tooltipster-fade tooltipster-fade-show" style="transition-duration: 350ms; animation-duration: 350ms; width: 298px; padding-left: 0px; padding-right: 0px; top: 125.5px; left: 675px;">
<div class="tooltipster-content">Application has to be onboarded as a pre-requisite</div>
<div class="tooltipster-arrow-right tooltipster-arrow" style="">
<span style="border-color:rgb(236, 236, 236);"></span>
</div>
</div>
解决这个问题的任何帮助都会很棒。这看起来是一个看似微不足道的问题,但我有相当长的时间试图解决这个问题,但没有什么可展示的。