0

我正在尝试在我的 php 脚本中调用 javascript 确认对话框,这似乎不起作用,我做错了什么,是更好的方法吗,这是代码示例:

<?php
   echo "<script language=\"javascript\">";
       echo "var answer = confirm(\"Are you sure you want to delete this Buyer?\")";
       echo "if (answer !=0) { ";
           $g->DelBuyer($reg);
       echo "}else{";
           echo" You preesed cancel";
       echo "}";
    echo "</script>";
enter code here
4

1 回答 1

0

这样做的唯一方法是在用户按下按钮时使用纯 JavaScript,

如果您担心用户会禁用 JavaScript 然后删除某些项目,您可以构建一个回退,它会将您发送到另一个带有确认消息的 PHP 页面。

假设您在页面上有以下按钮:

<input type="submit" name="buttonName" value="Delete" onclick="confirm('http://www.yourdomain.com/path/item/deletion/url/');" />

在 JavaScript 中,您将创建一个函数,例如

function confirm(url) {

    var answer = confirm('your message');
    if (answer != 0)
        //Send the user to the correct page when he presses 'yes / oke'
        window.location.href = url;
    else
        alert('You cancelled the operation.');

    //Returns false so no events will be executed.
    return false;

}

这应该适用于您的问题所描述的内容,如果您需要更多信息,请告诉我。

- 席德

于 2013-10-16T20:57:40.307 回答