gpt4 book ai didi

javascript - dblclick 不适用于触摸设备

转载 作者:行者123 更新时间:2023-11-30 00:23:43 26 4
gpt4 key购买 nike

dblclick 在触摸设备和 PC 浏览器上工作的最佳方式是什么

下面的代码在鼠标双击时工作得很好,但在 android 触摸设备上尝试时,不起作用。我应该怎么做?对此很陌生

$(document).on("dblclick","#table_discrepancy tr", function() {

var orderno = $(this).find("td:eq(0)").text();
var workorderno = $(this).find("td:eq(1)").text();

server('/get_customer_info/' + orderno, function(result){

var cus_name = result.name.replace(/^[\s]+/, '');
cus_name = cus_name.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
var phone_no = result.phoneno.replace(/^[\s]+/, '');
var email = result.email.replace(/^[\s]+/, '');

$('#customer_info_modal').modal('show');

$('#orderno_modal').html('Order# : ' + orderno);
$('#workorderno_modal').html('Work Order# : ' + workorderno);
$('#customer_name_modal').html('Name : ' + cus_name);
$('#customer_phoneno_modal').html('Phone#: ' + phone_no);
$('#customer_email_modal').html('Email: ' + email);
});
})

最佳答案

对于移动设备,我会使用特定于移动设备的事件,例如 taphold 而不是双击,因为它可能会提供更原生的用户体验。

您可以使用 jQuery Mobile 提供特定于移动设备的事件: http://api.jquerymobile.com/category/events/

关于javascript - dblclick 不适用于触摸设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45804917/

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