jquery移动直播功能无法使用手机间隙为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;
});
});
由于
答案 0 :(得分:1)
在swiperight之后还有一个额外的'{'....
答案 1 :(得分:0)
$('body').live('swiperight', function() {
alert( 'You swiped!' );
return false;
});