htmljavascript简单随机抽选选中加关闭两个按钮
时间: 2023-08-02 14:34:08 浏览: 95
好的,为了让您更好地使用随机抽选功能,这里提供一个带有“选中”和“关闭”按钮的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>随机抽选</title>
</head>
<body>
<h1>随机抽选</h1>
<p>请输入选项,用英文逗号分隔:</p>
<input type="text" id="options">
<button onclick="randomSelection()">抽选</button>
<p id="result"></p>
<div id="buttons" style="display: none;">
<button onclick="confirmSelection()">选中</button>
<button onclick="closeSelection()">关闭</button>
</div>
<script>
var options = [];
var randomIndex = -1;
function randomSelection() {
options = document.getElementById("options").value.split(",");
randomIndex = Math.floor(Math.random() * options.length);
var result = options[randomIndex];
document.getElementById("result").innerHTML = "选中:" + result;
document.getElementById("buttons").style.display = "block";
}
function confirmSelection() {
alert("您已选中:" + options[randomIndex]);
closeSelection();
}
function closeSelection() {
document.getElementById("result").innerHTML = "";
document.getElementById("buttons").style.display = "none";
document.getElementById("options").value = "";
options = [];
randomIndex = -1;
}
</script>
</body>
</html>
```
在这个示例中,您依然需要输入要抽选的选项,然后点击“抽选”按钮随机抽选一个选项,并在页面上显示出来。但是,与之前不同的是,现在页面上还会显示两个按钮:“选中”和“关闭”。
当您点击“选中”按钮时,会弹出一个提示框,告诉您您已经选中了哪个选项,并且页面上的结果和按钮都会消失,您需要重新输入选项才能进行下一次抽选。
当您点击“关闭”按钮时,页面上的结果和按钮都会消失,并且您输入的选项也会被清空,您可以重新输入选项进行下一次抽选。
阅读全文