私は次の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では、ツールチップが表示されるたびにそれを非表示にする方法はありません。
スパンの外側をタップしてフェードアウトさせる方法はありますか?ありがとうございました!