每当我点击应用程序中的引导按钮时,它就会陷入活动状态或悬停状态,除非我点击屏幕上的某个位置。所以我认为这是一个简单的解决方案
1)检测有人点击引导按钮
$(document).on('touchstart', '.btn', function(){
console.log("button touch");
});
2)我怎么能以某种方式单击屏幕上的某个位置,以便按钮松开?(在引导按钮上出现touchend事件)
$(document).on('touchend', '.btn', function(){
console.log("button touch end");
// ?????????????
});
我的自举按钮卡在了phonegap应用上,我已经尝试了所有这些答案
1)根本没有解决问题 Bootstrap buttons get "stuck" down on mobile devices
2)我不想改变背景 bootstrap 3 button hover/focus state