iOS 中的 Foundation 6 工具提示单击事件

Foundation 6 tooltip click event in iOS

我一直在尝试在 Foundation 6 中单击工具提示时发生某些事情。
当我在桌面浏览器(或任何非 iOS Safari 的浏览器)上测试我的工作时,一切似乎都运行良好。

在 iOS 的 Safari 中,工具提示没有响应,就好像没有进行点击一样。

$(document).foundation();

$(".tooltip").off();
$(".tooltip").click(()=>{
  alert("!");
});  

我的代码在这里:https://codepen.io/Nirtz89/pen/MVbxpo

谢谢!

经过反复试验,我找到了解决办法。

$("body").on("touchstart", ".tooltip", function () {
    // Code for tooltip press here
});

这非常有效。