我搜索了线程,我发现拖放移动需要使用Jquery UI并使用防止默认执行它但我的不起作用。我试过UI触摸它仍然无法工作,我不知道我错过了哪一步。移动设备中的屏幕上下拖动,有时会错过来自LogCat的拖动操作。
<script type="text/javascript" src="cordova-1.7.0.js"></script>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="jquery.mobile-1.1.0.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js"></script>
JS档案
$( document ).delegate("#game", "pageshow", function() {
$('.box0').draggable();
$('.box1').draggable();
$('.box2').draggable();
$('body>div').bind("dragstart", function(event, ui){
event.stopPropagation();
});
});
答案 0 :(得分:1)
也许你可以看到这个http://forresst.github.com/2012/06/22/Make-a-list-jQuery-Mobile-sortable-by-drag-and-drop/
我不知道它是否适用于PhoneGap