jquery mobile live 功能在使用 android 手机间隙时不起作用
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
向右滑动后多了一个“{”....
There is an extra '{' after swiperight ....