在jQuery mobile中,tap和vclick之间有什么区别?
我应该使用哪个事件来收听?为什么要使用vclick?我只是不知道该使用哪种情况。
回答:
在使用jQuery Mobile Tap的情况下,它只能在移动设备上使用。情况不再如此。
创建VClick的目的是弥合台式机/移动设备之间的点击/点击不兼容之间的差距。
现在,您可以自由使用水龙头了,但是问题很少。在iOS平台上点击将失败。应该改用Touchstart。
例子:
回答:
在台式机和移动设备上均可使用。
- Android 4.1.1-delay
- iOS-delay
桌面Firefox 19和Chrome 25.0.1364.152-delay
$(document).on(‘pagebeforeshow’, ‘#index’, function(){
$( document ).on( “vclick”, ‘[data-role=”page”]’, function() {
$( this ).append( “vmouseup fired.” );
});
});
点按:
回答:
它过去只能在移动设备上运行,现在也可以在台式机浏览器上运行,但是在带有jQuery Mobile 1.1及更低版本的iOS上将失败。
- Android 4.1.1-delay
- iOS-delay
桌面Firefox 19和Chrome 25.0.1364.152-delay
$(document).on(‘pagebeforeshow’, ‘#index’, function(){
$( document ).on( “tap”, ‘[data-role=”page”]’, function() {
$( this ).append( “tap fired.” );
});
});
回答:
将在移动设备和桌面浏览器上工作。
- Android 4.1.1-可见延迟(300+毫秒)
- iOS-delay
桌面Firefox 19和Chrome 25.0.1364.152-
$(document).on(‘pagebeforeshow’, ‘#index’, function(){
$( document ).on( “click”, ‘[data-role=”page”]’, function() {
$( this ).append( “click fired.” );
});
});
结论
如果您想使用VClick向后兼容 ,则在其他情况下请使用 。
以上是 在jQuery mobile中,tap和vclick之间有什么区别? 的全部内容, 来源链接: utcz.com/qa/410040.html