我有以下 jQuery 代码,
setTips: function() {
$(".tooltip").parent().hover(function(){
//store the tooltip being hovered
TT.current = $(this);
TT.timer = setTimeout(function(){
//find the tooltip
TT.current.find(".tooltip").fadeIn('fast');
}, TT.delay);
}, function(){
//on mouseout, clear timer and hide tooltip
clearTimeout(TT.timer);
$(this).find(".tooltip").fadeOut('fast');
这在浏览器上运行良好,但在 iphone 上,每当出现工具提示时,都无法隐藏它。
有没有办法在跨度之外点击并让它淡出?谢谢!