单击“提交”时出现警报弹出消息

时间:2016-06-15 13:38:03

标签: php

我正在修改一个小型WebERP应用程序的代码。

echo '<td>
            <input type="hidden" name="CradTYPE'.$profInd.'" value="' . $row['cardType'] . '" />
            <input type="hidden" name="ProfileID'.$profInd.'" value="' . $row['profileId'] . '" />
            <input type="hidden" name="LastFour'.$profInd.'" value="' . $row['accountNo'] . '" />
            <input type="submit" name="SubmitID'.$profInd.'" value="Process" />
        </td>';

当我点击Proceed时。使用默认代码更新数据库。在它更新之前,我希望它有一个流行消息读取。 &#39;您想选择哪个日期?&#39;。有两个选项A.今天是B.日期日期。我怎么能在上面的PHP代码上做到这一点?

2 个答案:

答案 0 :(得分:0)

显示一些代码..警告基本上是不可能的,直到您使用一些JavaScript和html ..或者您可以将用户重定向到另一页以询问选项..如果您不想使用的JavaScript。

答案 1 :(得分:0)

你需要Javascript。尝试查看prompt()函数。然后,您可以在弹出的窗口上实现两个选择日期。