gpt4 book ai didi

jquery - 以编程方式触摸屏幕 phonegap

转载 作者:行者123 更新时间:2023-11-28 06:43:12 25 4
gpt4 key购买 nike

每当我单击应用程序中的 Bootstrap 按钮时,除非我单击屏幕上的某个位置,否则它会卡在事件或悬停状态。所以我认为这是一个简单的解决方案

1) 检测何时有人点击 Bootstrap 按钮

$(document).on('touchstart', '.btn', function(){ 
console.log("button touch");
});

2) 我怎样才能以某种方式点击屏幕上的某处以使按钮松开?(touchend 事件发生在 Bootstrap 按钮上)

$(document).on('touchend', '.btn', function(){ 
console.log("button touch end");
// ?????????????
});

我的 Bootstrap 按钮卡在 phonegap 应用程序上,我已经尝试了所有这些答案

1) 根本没有解决问题 Bootstrap buttons get "stuck" down on mobile devices

2) 我不想改变背景 bootstrap 3 button hover/focus state

最佳答案

您可能应该找出底层问题。但是要回答您的问题,您可以使用 tiggerclick .从链接中获取示例:

$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});
$( "#other" ).click(function() {
$( "#target" ).click();
});

关于jquery - 以编程方式触摸屏幕 phonegap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34183066/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com