window confirm()方法
点击确认按钮–方法 返回true;点击取消按钮–方法返回false
给按钮添加点击事件<button onclick=myfunction()>按钮上面的文字</button>
举例:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<button onclick=myfunction()>点击</button>
<script>
function myfunction(){
var r=confirm('请点击')
if(r==true){
alert('您点击了\'确定\'按钮')}
else{
alert('您点击了\"取消\"按钮')
}
}
</script>
</body>
</html>
点我