0

我已经创建了 android phone gap 应用程序。我想要做的是我的应用程序中有一个删除按钮,当我们长按一个按钮时,它应该显示一条一致消息“你想删除帐户”我们我使用点击功能它可以正常工作它不能在长按上工作可以告诉谁来做这个。这是我用于长按的代码

$(document).on(function(){
$("#taphold").bind("taphold",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");
    }
});});

提前致谢

4

1 回答 1

0

在按钮单击列表器中使用通知...

     // process the confirmation dialog result
    function onConfirm(button) {
    alert('You selected button ' + button);
    }

    // Show a custom confirmation dialog
    //
    function showConfirm() {
    navigator.notification.confirm(
    'You are the winner!',  // message
    onConfirm,              // callback to invoke with index of button pressed
    'Game Over',            // title
    'Restart,Exit'          // buttonLabels
    );
    }

欲了解更多信息检查..电话差距文档

于 2013-06-08T05:58:32.580 回答