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
    }
});

或者,使用 vclick 而不是 onclick ..

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