我已经制作了Divslider应用程序。当我在ipad上尝试DivSlider它工作得很好只是问题是点击不顺畅,如果我顺利点击然后图像不是在中心滑动,如果我更加努力,那么它的工作原理?我怎样才能顺利点击?
$('#myImageFlow').append('<div id='+id+' class="sliderImage" height="'+height+'" width="'+ width +'" onclick="">
这是onclick =""
的行。我已申请,因为它是在它之前没有在ipad工作。
答案 0 :(得分: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() {
//
});