Windows 7.5 電話でドラッグ アンド ドロップ機能を動作させようとしています。最初に、Windows 7.5 を除くすべてのブラウザーで機能する jquery ui draggable を使用してみました。後でさらに調べてみると、ウィンドウには touchstart、touchend、および touchmove イベントがないことがわかりました。だから私は、衝撃的に発生していたmousedown、mousemoveイベントを使用して動作させようとしました。しかし、それらは適切な順序で発砲しません。(mousemove は、mousedown の前に発生します)。また、dragstart および dragend イベントも機能しませんでした。これを機能させる必要があります。何か提案はありますか ?
/*Eg1:does not work*/
$("#draggable").draggable();
/*Eg2:This event does not fire*/
$("#draggable").bind("touchstart touchmove touchend", function(){
alert("touch events supported");})
/*Eg3: In this case, mousemove fires before mousedown.*/
$("#draggable").bind("mousedown", function(){
alert("mousedown");});
$("#draggable").bind("mousemove", function(){
alert("mousemove");});