我正在使用tooltipster,并且有一个工具提示,显示单击菜单按钮的时间(此位工作正常)。不过,我在使用工具提示中的关闭按钮关闭工具提示时遇到问题。
我一定错过了一些非常简单的东西。
HTML
<span class="tooltip-email-share"> Stuff </span>
<!-- is triggered by this link -->
<ul>
<...>
<li><a class="menu-share"></a></li>
<...>
</ul>
工具提示的 HTML(以防万一)
<div class="tt-email-share">
<span class="tt-close"></span>
<h1>Title</h1>
<form>
</form>
</div>
JS
// initiates the tooltip - trigger set to custom & autoClose is false, so it wont close without pressing the close button.
$('.tooltip-email-share').tooltipster({
theme: 'tooltipster-html-shadow',
interactive: 'true',
autoClose: 'false',
position: 'bottom',
speed: '200',
trigger: 'custom',
content: $('HTML Stuff in here')
});
// Shows the tooltip (this bit works a charm)
$('.menu-share').click(function(){
$('.tooltip-email-share').tooltipster('show');
});
// *should* close the tooltip (doesn't work)
$('.tt-close').click(function(){
$('.tooltip-email-share').tooltipster('hide');
});