<!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>Document</title>
<style>
div {
width: 200px;
height: 60px;
border: 5px solid hotpink;
text-align: center;
line-height: 60px;
}
button {
width: 210px;
height: 30px;
text-align: center;
line-height: 30px;
}
</style>
</head>
<body>
<div>开始点名!</div>
<button>随机点名</button>
<script>
// 1. 获取元素
let box = document.querySelector('div');
let btn = document.querySelector('button');
// 2. 自定义随机函数
function getRandom(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
// 声明一个数组
let arr = ['蜘蛛侠','钢铁侠','绿巨人'];
// 3. 事件监听
btn.addEventListener('click', function() {
// 该模块需要完善
let random=getRandom(0,arr.length-1 );
//写入标签内部
box.innerHTML=arr[random];
//删除数组元素
arr.splice(random,1);
//如果数组中只剩余一个元素,则禁用按钮
if(arr.length==0){
console.log('只剩余最后一个!');
btn.disabled=true;
btn.innerHTML='点名完毕!';
}
})
</script>
</body>
</html>