0

jqplotチャートでダブルタップイベントをキャプチャする必要があります。以下のリンクを調べました。 http://appcropolis.com/implementing-doubletap-on-iphones-and-ipads/ jquery.jqplot.js に、次のコードを挿入しました。

this.onTouchEnd = function(ev) {

   var now = new Date().getTime();
   var lastTouch = $(this).data('lastTouch') || now + 1 /** the first time this will make delta a negative number */;
   var delta = now - lastTouch;
   clearTimeout(action);
   if(delta<500 && delta>0){
           // the second touchend event happened within half a second. Here is where we invoke the double tap code
           alert("Doubletapped");
   }else{
           // A click/touch action could be invoked here but wee need to wait half a second before doing so.
           alert("notdoubletapped");
   }
   $(this).data('lastTouch', now); 

ただし、ダブルタップイベントは検出されません。jqplot の場合、'this' は何を参照する必要がありますか? ev.data.plot を参照する必要がありますか? $(this).data('lastTouch')

4

0 に答える 0