1

我注意到

$("body").on("click", "#id", function(event) {...

在 iOS 上不工作,而

$("#id").on("click", function(event) {...

完美运行。相同的站点,相同的 jQuery(最新),相同的 DOM。我不能使用后者,因为#id 是动态添加的。

想法?

4

2 回答 2

14

尝试如下一次:

$(document).on("click touchstart", "#id", function(event) {...
于 2013-04-22T19:04:21.063 回答
1

如果您想添加点击而不使用触摸事件,您可以这样做(尽管它确实涉及代理嗅探):

// Check if it is iOS
var isiOS = (navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false);

if(isiOS === true) {

    // Store -webkit-tap-highlight-color as this gets set to rgba(0, 0, 0, 0) in the next part of the code
    var tempCSS = $('a').css('-webkit-tap-highlight-color');

    $('body').css('cursor', 'pointer')                                    // Make iOS honour the click event on body
             .css('-webkit-tap-highlight-color', 'rgba(0, 0, 0, 0)');     // Stops content flashing when body is clicked

    // Re-apply cached CSS
    $('a').css('-webkit-tap-highlight-color', tempCSS);

}

在http://www.texelate.co.uk/blog/post/124-add-a-click-event-to-html-or-body-on-ios-using-jquery/上查看更多信息

于 2015-04-27T13:59:11.680 回答