jquery mobile live 功能在使用 android 手机间隙时不起作用

发布于 2025-01-01 00:33:55 字数 848 浏览 0 评论 0原文

jquery mobile live 功能无法在使用 android 手机间隙时工作。请参阅下面的代码,任何人都可以告诉我有什么问题吗?我已经包含了 jquery libray 和 phongap js,任何人都可以告诉我有什么问题吗?还有一个问题是,如果未触发此事件,如何在电话间隙

<< 中触发默认事件?

link rel="stylesheet" href="jquery.mobile/jquery.mobile-1.0.1.css" type="text/css"/>
      <link rel="stylesheet" href="master.css" type="text/css"/>
      <script type="text/javascript" charset="utf-8" src="jquery.mobile/jquery-1.6.4.min"></script>
       <script type="text/javascript" charset="utf-8" src="phonegap-1.3.0.js"></script>

       <script type="text/javascript" charset="utf-8" src="jquery.mobile/jquery.mobile-1.0.1.js"></script>

$( function()
         {
 $("#body").live('swiperight', function() { 
        {
    alert( 'You swiped!' ); 
    return false;
        });
 });

谢谢

jquery mobile live function not working in using phone gap for android .see my below code can anybody tell what is problem I have included jquery libray and phongap js can anybody tell what is problem ? and one more question is if this event is not fired how to fire default event in phone gap

<

link rel="stylesheet" href="jquery.mobile/jquery.mobile-1.0.1.css" type="text/css"/>
      <link rel="stylesheet" href="master.css" type="text/css"/>
      <script type="text/javascript" charset="utf-8" src="jquery.mobile/jquery-1.6.4.min"></script>
       <script type="text/javascript" charset="utf-8" src="phonegap-1.3.0.js"></script>

       <script type="text/javascript" charset="utf-8" src="jquery.mobile/jquery.mobile-1.0.1.js"></script>

$( function()
         {
 $("#body").live('swiperight', function() { 
        {
    alert( 'You swiped!' ); 
    return false;
        });
 });

Thanks

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

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

发布评论

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

评论(2

回忆那么伤 2025-01-08 00:33:56

向右滑动后多了一个“{”....

There is an extra '{' after swiperight ....

吹泡泡o 2025-01-08 00:33:56
$('body').live('swiperight', function() { 
            alert( 'You swiped!' ); 
    return false;
        });
$('body').live('swiperight', function() { 
            alert( 'You swiped!' ); 
    return false;
        });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文