我想在用戶確認後執行一些php代碼。我的意思是如果用戶點擊是的一些PHP函數應該執行。我該怎麼做?bootbox後如何使用php代碼確認提醒
bootbox.confirm({
message: "This is a confirm with custom button text and color! Do you like it?",
buttons: {
confirm: {
label: 'Yes',
className: 'btn-success'
},
cancel: {
label: 'No',
className: 'btn-danger'
}
},
callback: function (result) {
console.log('This was logged in the callback: ' + result);
}
});
在回調函數中,您將向運行代碼的PHP頁面發出AJAX請求。 – David
已經有回撥塊了;你可以使用alert來檢查按鈕的值:'callback:function(result){alert(result);}' – bharat
在回調函數中,我該如何編寫php代碼? – rivas