gpt4 book ai didi

android - jQuery mobileTaphold 事件在模拟器上不起作用?

转载 作者:行者123 更新时间:2023-11-30 03:33:45 25 4
gpt4 key购买 nike

我创建了一个应用程序,当长按按钮时,它会显示一个确认框,其中包含一条消息。如果用户选择确定,它将执行该任务;否则它什么都不做。

所以我已经编写了代码,但是当我在我的模拟器上运行它时它什么也没做。这是代码:

$(document).ready(function(){
$("#tapholder").bind("tapholder",function(){
var hi=confirm("Do you really want to delete data");
if(hi==true) {
db.transaction(function(tx){
tx.executeSql(deleterecord,[id]);
alert("Record Deleted Successfully");
parent.location='file:///android_asset/www/index.html';
});
}else{
alert("Data not deleted");
}
});
});

<td id="Cancel"><button id="tapholder">DeleteRecord</button></td>

最佳答案

Tapholder 事件不存在,应该是 taphold 你也应该绑定(bind)它有点不同,而不是绑定(bind)你应该使用函数 on .

$(document).on("taphold","#tapholder",function(){
var hi=confirm("Do you really want to delete data");
if(hi==true){
db.transaction(function(tx){
tx.executeSql(deleterecord,[id]);
alert("Record Deleted Successfully");
parent.location='file:///android_asset/www/index.html';
});
}else{
alert("Data not deleted");
}
});

关于android - jQuery mobileTaphold 事件在模拟器上不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16977996/

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