我正在做一个论坛项目。我正在做后端部分,我希望在按下按钮然后将其删除时出现确认消息。我只有按钮代码。
答案 0 :(得分:0)
在Javascript中:
function ConfirmDelete()
{
var x = confirm("Are you sure you want to delete?");
if (x)
return true;
else
return false;
}
在HTML中:
<input type="button" onclick="ConfirmDelete()">