如果一个 Tippy 工具提示恰好显示在链接上,那么单击工具提示也会意外触发底层链接。
tippy('#myButton', {
content: 'Click this tooltip to close it',
trigger: 'click'
});
<main>
Clicking on the tooltip to close it navigates to the link.
<br><br><a href=foo.html>This is the link that will be triggered</a>
<br><br><button id="myButton">Click me to see tooltip</button>
</main>
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://unpkg.com/tippy.js@6"></script>
(如果您更喜欢https://codepen.io/mpoo/pen/LYLGVBP?editors=1000,也可以作为笔使用)
我希望有一个 Tippy Prop 可以避免这种行为,但似乎没有。
如何防止锚触发?