簡體   English   中英

使用 php 更新和重新加載 mysql - 刪除確認問題

[英]Update & reload mysql using php - remove confirmation question

當我提交它要求確認時,我試圖刪除那段代碼但不起作用。

我想提交,它會在沒有被問到的情況下更新。

        $('body').on("change",'.guests_left',function(){
            var value = $(this).val();
            var id = $(this).data("id");
            var location = 'updateLeftGuests.php?sheet_id='+id+'&guests_left='+value;
            var txt;
            var r = confirm("This will change remaining guests, Are you sure?");

            if (r == true) {
                window.location.href = location;
            } else {
                location.reload();
            }

        });
    }
} );
</script>

改用這個:

$('body').on("change",'.guests_left',function(){
    var value = $(this).val();
    var id = $(this).data("id");
    var location = 'updateLeftGuests.php?sheet_id='+id+'&guests_left='+value;
    var txt;
    window.location.href = location;
});

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM