10

客观的

单击时关闭锚标记的父 div。在下面的代码中,我想在用户单击锚标记close_performance_tt时隐藏 div performance_tt

问题

花了几个小时后无法让它在 iOS 设备上运行。适用于其他所有设备,甚至是 BlackBerry 10 设备。

<div id="performance_tt" style="display: none;width: 300px;height: 200;overflow: auto;padding: 5px;background-color: yellow;">
    <div>Website performance has become an important consideration for most sites.
    The speed of a website affects usage and user satisfaction, as well as search engine rankings, a factor that directly correlates to revenue and retention.
    As a result, creating a system that is optimized for fast responses and low latency is key.</div>
    <a id="close_performance_tt" href="#">Close</a>
    <script>
    var userAgent = navigator.userAgent.toLowerCase();
    var isiOS = (navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false);
    if (isiOS) {
        $("#close_performance_tt").bind('touchstart', function() {
            alert('Touch-start event triggered');
        });
    } else {
        $("#close_performance_tt").bind('click', function() {
            alert('Click event triggered');
        });
    }
    </script>
</div>
4

3 回答 3

18

定义一个稍后可以使用的 clickhandler:

var clickHandler = ('ontouchstart' in document.documentElement ? "touchstart" : "click");

$("a").bind(clickHandler, function(e) {
    alert("clicked or tapped. This button used: " + clickHandler);
});

这将触发非触摸设备上的点击和触摸设备上的 touchstart。

话虽如此,我强烈建议改用快速点击,并使用常规点击事件。使用上述解决方案,例如,当您在链接上滑动以滚动页面时,您将触发链接上的“touchstart”——这并不理想。

于 2013-09-12T09:50:37.923 回答
2

在 iOsa标签是一个可点击的元素,所以点击链接会触发鼠标事件(包括click)。

这段代码

$("#close_performance_tt").bind('click',function() { 
    alert('Click event triggered');                             
}); 

在 iO 上可以正常工作。

更多信息:http: //developer.apple.com/library/ios/documentation/AppleApplications/Reference/SafariWebContent/HandlingEvents/HandlingEvents.html

于 2013-08-13T05:48:12.127 回答
2

http://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html

对于像 click 这样的 iOS 鼠标事件,不要冒泡,除非:

  • 事件的目标元素是链接或表单域。
  • 目标元素,或者它的任何祖先,直到但不包括 ,都为任何鼠标事件设置了显式事件处理程序。此事件处理程序可能是一个空函数。
  • 目标元素,或者它的任何祖先,包括文档,都有一个 cursor:pointer CSS 声明。

对我来说最简单的解决方案是在任何cursor: pointer地方都应用,以防它是 iOS 触摸设备。由于没有光标,因此没有任何视觉影响

于 2015-07-16T16:01:43.017 回答