我在使用phonegap开发的android应用程序中使用jquery-ui实现拖放功能。一切都很好。我使用jquery.ui.touch-punch.js
进行了触摸事件。问题是我在Android平板电脑中拖动触摸时没有得到帮手。 Helper在桌面浏览器中运行良好。
答案 0 :(得分:4)
以下是一个有效的例子:http://jsfiddle.net/Gajotres/rjC9q/
我已在Android 4.1.1和iPad 6.0上测试过它。
要使其正常工作,您还需要添加以下代码:
/iPad|iPhone|Android/.test( navigator.userAgent ) && (function( $ ) {
var proto = $.ui.mouse.prototype,
_mouseInit = proto._mouseInit;
$.extend( proto, {
_mouseInit: function() {
this.element
.bind( "touchstart." + this.widgetName, $.proxy( this, "_touchStart" ) );
_mouseInit.apply( this, arguments );
},
_touchStart: function( event ) {
/* if ( event.originalEvent.targetTouches.length != 1 ) {
return false;
} */
this.element
.bind( "touchmove." + this.widgetName, $.proxy( this, "_touchMove" ) )
.bind( "touchend." + this.widgetName, $.proxy( this, "_touchEnd" ) );
this._modifyEvent( event );
$( document ).trigger($.Event("mouseup")); //reset mouseHandled flag in ui.mouse
this._mouseDown( event );
//return false;
},
_touchMove: function( event ) {
this._modifyEvent( event );
this._mouseMove( event );
},
_touchEnd: function( event ) {
this.element
.unbind( "touchmove." + this.widgetName )
.unbind( "touchend." + this.widgetName );
this._mouseUp( event );
},
_modifyEvent: function( event ) {
event.which = 1;
var target = event.originalEvent.targetTouches[0];
event.pageX = target.clientX;
event.pageY = target.clientY;
}
});
})( jQuery );
我不是此代码的作者,而是Oleg Slobodskoi。
答案 1 :(得分:0)
jquery-ui
?没门!他们尚未针对移动设备优化jquery-ui
。所以不要指望它能顺利运行。
您可能需要考虑其他库,例如