0

Divslider アプリケーションを作成しました。ipad で DivSlider を試すと問題なく動作しますが、問題はタップがスムーズではないことです。スムーズにタップすると画像が中央でスライドせず、強くタップすると動作しますか? どうすればスムーズにタップできますか?

  $('#myImageFlow').append('<div id='+id+' class="sliderImage"  height="'+height+'"  width="'+ width +'" onclick="">

これはonclick ="". 以前iPadでタップが効かなくなったので申請しました。

4

1 に答える 1

0

ここにタップイベントがありますhttp://api.jquerymobile.com/tap/

$(function() {
    // Bind the tapHandler callback function to the tap event on div.box
    $( "#yourDivID" ).on( 'tap', tapHandler );

    // Callback function references the event target and adds the 'tap' class to it
    function tapHandler( event ) {
        // your event
    }
});

または、onclick の代わりに vclick を使用します。

$( document ).on( "vclick", "#yourDivID", function() {
  // 
});
于 2013-06-10T06:33:42.303 に答える