zl程序教程

您现在的位置是:首页 >  后端

当前栏目

JS - 对话框

JS 对话框
2023-09-14 08:57:23 时间

1,
<span onclick="return confirmAct();">执行操作</span>

2,

function confirmAct(){   

  if(confirm('确定要执行此操作吗?')){

    alert(1)
  }else{
    alert(2)
  }

}