js 自定义 实现 弹出式确认窗口的代码
时间: 2024-03-05 15:53:36 浏览: 131
以下是一个简单的 JavaScript 弹出式确认窗口的实现:
```html
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Confirm Box</title>
</head>
<body>
<h1>JavaScript Confirm Box Example</h1>
<button onclick="showConfirm()">Show Confirm Box</button>
<script>
function showConfirm() {
var result = confirm("Are you sure you want to delete this item?");
if (result) {
alert("Item deleted successfully!");
} else {
alert("Delete operation cancelled.");
}
}
</script>
</body>
</html>
```
在这个例子中,当用户点击 "Show Confirm Box" 按钮时,会弹出一个确认窗口,询问用户是否确定删除某个项目。如果用户点击确认按钮,则会显示一个警告框,表示项目已经成功删除。如果用户点击取消按钮,则会显示一个警告框,表示删除操作已被取消。
阅读全文