第一个web应用程序

Bingo卡片游戏:

1.html代码如下:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Bingo card</title>
  <link rel="stylesheet" type="text/css"  href="script01.css">
  <script type="text/javascript" src="script01.js"></script>
</head>
<body>
  <h1>Creat A Bingo Card</h1>
  <table>
    <tr>
      <th>B</th>
      <th>I</th>
      <th>N</th>
      <th>G</th>
      <th>O</th>
    </tr>
    <tr>
      <th id="square0"> </th>
      <th id="square5"> </th>
      <th id="square10"> </th>
      <th id="square14"> </th>
      <th id="square19"> </th>
    </tr>
    <tr>
      <th id="square1"> </th>
      <th id="square6"> </th>
      <th id="square11"> </th>
      <th id="square15"> </th>
      <th id="square20"> </th>
    </tr>
    <tr>
      <th id="square2"> </th>
      <th id="square7"> </th>
      <th id="free">Free</th>
      <th id="square16"> </th>
      <th id="square21"> </th>
    </tr>
    <tr>
      <th id="square3"> </th>
      <th id="square8"> </th>
      <th id="square12"> </th>
      <th id="square17"> </th>
<th id="square22"> </th>
    </tr>
    <tr>
      <th id="square4"> </th>
      <th id="square9"> </th>
      <th id="square13"> </th>
      <th id="square18"> </th>
      <th id="square23"> </th>
    </tr>
  </table>
  <p><button id="reload">Click hhere</button>
    to create a new card</p> 
</body>
</html>

output:

bingo01

2.script01.css代码如下:

th {
  width:20%;
}

body {
  backrround-color:white;
  color:black;
  font-size:20px;
  font-family:"Lucida Grande",Verdana,
    Arial,Helvetica,Sans-serif;
}

h1,th {
  font-family:Georgia,"Times New Roman",
    Times,Serif;
}

h1 {
  font-size:28px;
}

table {
  border-collapse:collapse;
}

th,td {
  padding:10px;
  border:2px black solid;
  text-align:center;
}

#free {
  background-color:red;
}

output:

bingo02

3.script01.js代码如下:

 window.onload=initAll;
//当窗口完成加载时,调用initAll()函数
function initAll(){
  for(var i=0;i<24;i++){
    //开始循环,i=0,递增到23,也就是总共迭代24次
    var newNum=Math.floor(Math.random()*75)+1;
    /*floor()代表返回最接近的整数,且是向下取整
     newNum为循环内部的新变量,并将其赋值为等号右边计算的结果
    Math.random()为0~1之间的随机数*/
    document.getElementById("square"+i).innerHtml=newNum;
    /*例如:第一次迭代时i=0,id为square0的将获得一个newNum的
    随机数.将一直循环到表格填满*/
  }
}

因为需要将值传递给函数,我们对以上代码做以下变化:

 window.onload=initAll;
function initAll(){
  for(var i=0;i<24;i++){
    setSquare(i);//将i值传递给setSquare()函数
  }
}

function setSquare(thisSquare){
  //thisSquare代表更新的当前格子的编号,与每次迭代的i相对应
  var newNum=Math.floor(Math.random()*75)+1;
  document.getElementById("square"+thisSquare).innerHTML=newNum;
}

output:

bingo03

4.探测对象(检查浏览器是否有能力理解你要实用的对象的方法)

方法是对要寻找的对象进行条件测试。
代码如下:

window.onload=initAll;
function initAll(){
  if(document.getElementById){//if条件测试
    for(var i=0;i<24;i++){//then 为真时
      setSquare(i);
  }
}
  else { //else为假时
    alert("sorry,your browser doesn't support this script");
  }
}

function setSquare(thisSquare){
  var newNum=Math.floor(Math.random()*75)+1;
  document.getElementById("square"+thisSquare).innerHTML=newNum;
}

5. 处理数组

我们需要确保Bingo卡片的有效性,需要满足以下几点:
1.每一列具有不同的数字范围。B列是1~15,I列是16~30,N列是31~45,G列是46~60,O列是61~75;
2.不能有重复值;
先解决第一点,方法如下:

window.onload=initAll;
function initAll(){
  if(document.getElementById){
    for(var i=0;i<24;i++){
      setSquare(i);
  }
}
  else {
    alert("sorry,your browser doesn't support this script");
  }
}

function setSquare(thisSquare){
  var colPlace=new Array(0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,
                        3,3,3,3,3,4,4,4,4,4);
  //与前面id值相对应
  var colBasis=colPlace[thisSquare]*15;
  var newNum=colBasis+Math.floor(Math.random()*15)+1;
  document.getElementById("square"+thisSquare).innerHTML=newNum;
}
  

output:

bingo04

6.更新数组

再来解决第二个问题:

window.onload=initAll;
var usedNums=new Array(76);//建立一个包含76个对象的新数组
function initAll(){
  if(document.getElementById){
    for(var i=0;i<24;i++){
      setSquare(i);
  }
}
  else {
    alert("sorry,your browser doesn't support this script");
  }
}

function setSquare(thisSquare){
  var colPlace=new Array(0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,
                        3,3,3,3,3,4,4,4,4,4);
  //与前面id值相对应
  var colBasis=colPlace[thisSquare]*15;
  var newNum=colBasis+Math.floor(Math.random()*15)+1;
  if (!usedNums[newNum]){//如果newNum位置上是false,
    usedNums[newNum]=true;//则将其设置为“true”,并将newNum写到卡片上
  }
  document.getElementById("square"+thisSquare).innerHTML=newNum;
}

output:

bingo05

7.使用do/while循环

此时发现卡片上已经没有重复的数字了,但是会出现空的格子,以下我们将讨论如何解决。

window.onload=initAll;
var usedNums=new Array(76);
function initAll(){
  if(document.getElementById){
    for(var i=0;i<24;i++){
      setSquare(i);
  }
}
  else {
    alert("sorry,your browser doesn't support this script");
  }
}

function setSquare(thisSquare){
  var colPlace=new Array(0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,
                        3,3,3,3,3,4,4,4,4,4);
  var colBasis=colPlace[thisSquare]*15;
  var newNum;
  do{//do里面的代码至少执行一次
   newNum=colBasis+Math.floor(Math.random()*15)+1;}
  
 while (usedNums[newNum]){
    usedNums[newNum]=true;
  document.getElementById("square"+thisSquare).innerHTML=newNum;
  }
}

output

Paste_Image.png

8.以多种方式调用脚本

让用户自己有能力运行脚本

window.onload = initAll;

var usedNums=new Array(76);

function initAll() {
  if(document.getElementById){
    document.getElementById("reload").onclick = anotherCard;
    newCard(); 
  }else {
    alert("sorry,your browser doesn't support this script");
  }
}


function newCard(){
  for(var i=0;i<24;i++){
      setSquare(i);
  }
}

function setSquare(thisSquare){
  console.log('thisSquare:',thisSquare)
  var colPlace=new Array(0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,
                        3,3,3,3,3,4,4,4,4,4);
  var colBasis=colPlace[thisSquare]*15;
  var newNum;
  
  do{//do里面的代码至少执行一次
   newNum=colBasis+Math.floor(Math.random()*15)+1;
  }

 while (usedNums[newNum]);

  usedNums[newNum]=true;
  document.getElementById("square"+thisSquare).innerHTML=newNum;
  
}
  
function anotherCard(){
  for(var i=1;i<usedNums.length;i++){
    usedNums[i]=false;
  }
  newCard();
  //return false;
}

    

output:

bingo08
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,580评论 18 139
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,392评论 25 707
  • 1. Java基础部分 基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语...
    子非鱼_t_阅读 31,560评论 18 399
  • 想你时写的每一篇文章都是一封情书
    慕宁1999阅读 195评论 0 0
  • 早早来到学校,想在门口迎接这群小鬼的到来,结果一到办公室就各种事情耽搁了,忙完手里的活感觉往教室跑,大老远就...
    皮_小皮阅读 250评论 0 4