我正在尝试使用onsubmit="return confirm('Do you really want to submit the form?')"
在用户通过单击提交按钮删除项目之前出现警告。我无法让确认框出现,它只是继续直接删除该项目。
谁能在我的代码中看到我可能出错的地方?我尝试更改双引号和单引号,但没有任何努力让确认框出现。
我的代码如下。
echo '<td> <form method="post" action="deleteassign.php" name="deleteassignform"
id="deleteassignform" onsubmit="return confirm('Do you really want to submit the form?')">';
echo '<input type="hidden" name="quizidvalue" id="quizidvalue" value="'.$sendquizid.'" />';
echo '<input type="hidden" name="classidvalue" id="classidvalue" value="'.$sendclassid.'" />';
echo '<input type="submit" name="deleteassignment" id="deleteassignment" value="Delete This Assignment"> </form> </td> </tr>';