条件が満たされた場合、jqueryダイアログウィンドウを開きたいのですが。現時点では、基本的な確認とアラートの条件のみを使用していますが、ダイアログに変更します。私はダイアログに精通していますが、関数から呼び出す方法はよくありません。これを行うためにコードをどのように修正しますか?どうもありがとう
function confirm_entry(cref,id,rack,intakedate)
{
input_box=confirm("Please be aware that this is a permanent destruction and cannot be undone. Only proceed if you are sure you wish to destroy this box. If not, click the cancel button.");
if (input_box==true)
{
// Output when OK is clicked
window.location.href = "boxdestroy.php?custref="+cref+"&id="+id+"&rack="+rack;
}
else
{
// Output when Cancel is clicked
alert ("Thank you. Your destruction has been cancelled and no further action will be taken.");
}
}