当前位置:Gxlcms > PHP教程 > php实现执行某一操作时弹出确认、取消对话框

php实现执行某一操作时弹出确认、取消对话框

时间:2021-07-01 10:21:17 帮助过:40人阅读

代码如下:

<script>
function del(){
if(confirm("确定要删除吗?")){
alert('删除成功!');
return true;
}else{
return false;
}
}
</script>
<button onclick="del()">确定</button>

人气教程排行