效果
代码
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>提示框</title>
</head>
<body>
<button onclick="tips()">点我显示提示框</button>
<script>
function tips() {
var confirmation = confirm('这是一个提示信息?'); // 显示提示内容
if (confirmation) {
alert('点击了确定')
} else {
alert('点击了取消')
}
}
</script>
</body>
</html>