加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
苏光正-点名.html 1.96 KB
一键复制 编辑 原始数据 按行查看 历史
13877092144 提交于 2020-12-28 11:43 . '苏光正-点名'
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.bootcdn.net/ajax/libs/vue/2.6.9/vue.min.js"></script>
</head>
<body>
<!--
1.Math.random ->Math.ceil()/Math.floor()
2.定义数组
3.快速改变索引
setTimeout()
setInterval()
4.将数组的元素放入页面{{}}
5.点击按钮暂停
-->
<div id="app">
{{student_name}}
<br>
<button @click='stop'>{{anNiu[flag]}}</button>
</div>
<script>
new Vue({
el:'#app',
data(){
return {
student:['苏光正','符文峰','王焱','黄文斌','黄业帝','尤昊'],
student_name:'',
id:0,
flag:1,
anNiu:['开始','暂停'],
}
},
//在页面加载完毕之后立即调用某个方法
created() {
this.get_name()
},
methods:{
//获取学生姓名
get_name(){
this.id = setInterval(()=>{
var index = Math.floor(Math.random()*6)
// console.log(this.student[index]);
this.student_name=this.student[index];
},30)
},
//暂停定时器
stop(){
if(this.flag){
clearInterval(this.id)
this.flag = 0;
}else{
this.get_name();
this.flag=1;
}
}
}
})
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化