为什么这个 jquery 函数在 iPhone 操作系统上不起作用?

发布于 2024-11-05 18:59:46 字数 779 浏览 1 评论 0原文

以下 jquery 在大多数桌面浏览器中工作正常,但在 android 和 iphone 浏览器上失败:

$('#submit_event').live('click', function() {

    if ($("#event_name").attr("value") != "" && $("#event_details").attr("value") != ""){
        sendEvent($("#event_name").attr("value"), $("#event_details").attr("value"));
        $('#response_container').append("<div class='event_title'>"+$("#event_name").attr("value")+"</div><div class='event_details'>"+$("#event_details").attr("value")+"<div class='comment'>Comment</div><textarea class='comment_area'></textarea><div id='post_comment'>Post</div></div>");
    }
});

#submit_event 只是 div 的 ID。单击后,它会在桌面浏览器上运行该功能,但不会在 Android 或 iPhone 上运行。

问候,

泰勒

The following jquery works fine in most desktop browsers, but fails on android and iphone browsers:

$('#submit_event').live('click', function() {

    if ($("#event_name").attr("value") != "" && $("#event_details").attr("value") != ""){
        sendEvent($("#event_name").attr("value"), $("#event_details").attr("value"));
        $('#response_container').append("<div class='event_title'>"+$("#event_name").attr("value")+"</div><div class='event_details'>"+$("#event_details").attr("value")+"<div class='comment'>Comment</div><textarea class='comment_area'></textarea><div id='post_comment'>Post</div></div>");
    }
});

The #submit_event is just the ID to a div. When clicked, it runs the function on desktop browsers, but not android or iphone.

regards,

taylor

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

写下不归期 2024-11-12 18:59:46

您可以尝试更有效的代码:

$('#submit_event').live('click', function() {

    var eName = $("#event_name").attr('value');
    var eDetails = $("#event_details").attr('value');

    if (eName && eDetails) {
        sendEvent(eName, eDetails);
        $('#response_container').append("<div class='event_title'>" +
            eName + 
            "</div><div class='event_details'>" +
            eDetails + 
            "..."
        );
    }
});

You could try more efficient code:

$('#submit_event').live('click', function() {

    var eName = $("#event_name").attr('value');
    var eDetails = $("#event_details").attr('value');

    if (eName && eDetails) {
        sendEvent(eName, eDetails);
        $('#response_container').append("<div class='event_title'>" +
            eName + 
            "</div><div class='event_details'>" +
            eDetails + 
            "..."
        );
    }
});
各空 2024-11-12 18:59:46

好吧,我找到了答案,

这只是移动游猎中的一个错误。

您需要做的就是将 onclick='' 添加到您绑定 live 函数的任何元素,它就会起作用。

Ok I found my answer,

It's just a bug in mobile safari.

All you need to do is add onclick='' to any element that you bind the live function to and it will work.

心房敞 2024-11-12 18:59:46

是的,.live 事件不适用于 td 等元素。它将与锚标记、按钮等 html 元素一起使用。因此,如果您想使用 jQuery 的 .live 事件应用 click 事件,您需要首先在 td 元素上使用 jquery .attr 方法添加 onclick="" 属性,然后应用。将事件与 td 元素绑定的实时事件。有关更多详细信息,请访问以下博客

http://skillativity .blogspot.com/2010/11/workaround-for-jquery-live-event.html

Yes .live event will not work with element like td. It will work with html element like anchor tag, button etc. So if you want to apply click event using .live event of jQuery you need to first add onclick="" attribute using jquery .attr method on your td element and then apply .live event to bind event with your td element. For more detail please visit on below blog

http://skillfulness.blogspot.com/2010/11/workaround-for-jquery-live-event.html

吹梦到西洲 2024-11-12 18:59:46

如果你也在使用jquery mobile,你可能想尝试一下

$('#submit_event').live('tap', function() {}

If you are using jquery mobile too, you might want to try

$('#submit_event').live('tap', function() {}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文