把以下js的代码改成JQuery的
<!DOCTYPEhtml><html><head><metacharset="utf-8"><link/><title>随机点名</title><linkrel="st...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link />
<title>随机点名</title>
<link rel="stylesheet" href="css/new_file.css" />
<script type="text/javascript">
var a=["张三","李四","王五","钱六"];
var a2=new Array();
function action(str){
var s=document.getElementById("bt").value;
if(s=="开始"){
isRun=true;
run();
document.getElementById("bt").value="结束";
}else{
isRun=false;
document.getElementById("bt").value="开始";
}
}
function run(){
var i=Math.floor(Math.random()*a.length+1)-1;
document.getElementById("show").innerHTML=a[i];
if(isRun==false){
var b=true;
for(var j in a2){
if(a2[j]==i){
b=false;
}
}
if(b){
a2[a2.length]=i;
return;
}
}
setTimeout("run()",10);
}
</script>
</head>
<body>
<div style="text-align: center;margin-top: 100%;">
<div id="show"style="margin: auto;font-size: 50px;width: 100px;height: 50px;background: #FFEEFF;"></div>
<div style="margin-top: 20px;">
<input id="bt" type="button"onclick="action()"value="开始" />
</div>
</div>
</body>
<html> 展开
<html>
<head>
<meta charset="utf-8">
<link />
<title>随机点名</title>
<link rel="stylesheet" href="css/new_file.css" />
<script type="text/javascript">
var a=["张三","李四","王五","钱六"];
var a2=new Array();
function action(str){
var s=document.getElementById("bt").value;
if(s=="开始"){
isRun=true;
run();
document.getElementById("bt").value="结束";
}else{
isRun=false;
document.getElementById("bt").value="开始";
}
}
function run(){
var i=Math.floor(Math.random()*a.length+1)-1;
document.getElementById("show").innerHTML=a[i];
if(isRun==false){
var b=true;
for(var j in a2){
if(a2[j]==i){
b=false;
}
}
if(b){
a2[a2.length]=i;
return;
}
}
setTimeout("run()",10);
}
</script>
</head>
<body>
<div style="text-align: center;margin-top: 100%;">
<div id="show"style="margin: auto;font-size: 50px;width: 100px;height: 50px;background: #FFEEFF;"></div>
<div style="margin-top: 20px;">
<input id="bt" type="button"onclick="action()"value="开始" />
</div>
</div>
</body>
<html> 展开
展开全部
<script type="text/javascript">
var a=["张三","李四","王五","钱六"];
var a2=new Array();
var isRun = false;
function action(){
if(isRun){
isRun=false;
$('#bt').val('开始');
}
else{
isRun=true;
$('#bt').val('结束');
run();
}
}
function run(){
var i=Math.floor(Math.random()*a.length+1)-1;
$('#show').html(a[i]);
if(isRun==false){
if(!a2.includes(i)){
a2.push(i);
return;
}
}
setTimeout("run()",10);
}
</script>
追问
加个好友可以吗
追答
私信我加你
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询