jQuery-黑白反斗棋

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
	<script src="jquery-1.8.0.js"></script>
    <script>
    	$(function(){
			var t=$("<table>").appendTo("div");
			t.attr("border","1");
				for(var i=0;i<5;i++){
					var row=$("<tr>").appendTo(t);
					for(var j=0;j<5;j++){
						var cols=$("<td>").appendTo(row);
						cols.attr({height:"100",width:"100",bgColor:"#000000"});
						cols.attr("id",i+"-"+j);
						cols.click(function(){
							var tdidarr=this.id.split("-");
							var x=parseInt(tdidarr[0]);
							var y=parseInt(tdidarr[1]);

							if(document.getElementById(x+"-"+y).bgColor=="#000000"){
									document.getElementById(x+"-"+y).bgColor="#ffffff";
							}else if(document.getElementById(x+"-"+y).bgColor=="#ffffff"){
									document.getElementById(x+"-"+y).bgColor="#000000";
							}
							if(x-1>=0){
								if(document.getElementById((x-1)+"-"+y).bgColor=="#000000"){
									document.getElementById((x-1)+"-"+y).bgColor="#ffffff";
								}else if(document.getElementById((x-1)+"-"+y).bgColor=="#ffffff"){
									document.getElementById((x-1)+"-"+y).bgColor="#000000";
								}
							 }
							if(x+1<=4){
								if(document.getElementById((x+1)+"-"+y).bgColor=="#000000"){
									document.getElementById((x+1)+"-"+y).bgColor="#ffffff";
								}else if(document.getElementById((x+1)+"-"+y).bgColor=="#ffffff"){
									document.getElementById((x+1)+"-"+y).bgColor="#000000";
								}
							}
							if(y-1>=0){
								if(document.getElementById(x+"-"+(y-1)).bgColor=="#000000"){
									document.getElementById(x+"-"+(y-1)).bgColor="#ffffff";
								}else if(document.getElementById(x+"-"+(y-1)).bgColor=="#ffffff"){
									document.getElementById(x+"-"+(y-1)).bgColor="#000000";
								}
							}
							if(y+1<=4){
								if(document.getElementById(x+"-"+(y+1)).bgColor=="#000000"){
									document.getElementById(x+"-"+(y+1)).bgColor="#ffffff";
								}else if(document.getElementById(x+"-"+(y+1)).bgColor=="#ffffff"){
									document.getElementById(x+"-"+(y+1)).bgColor="#000000";
								}
							}
							$(function(){
								var flag=true;
								for(i=0;i<5;i++){
									for(j=0;j<5;j++){
										if(document.getElementById(i+"-"+j).bgColor!="#ffffff"){
											flag=false;
										}
									}
								}
								if(flag){
									alert("你赢了!");
								}
								})
							});
						}
					}
			});
    </script>
</head>

<body>
<div></div>
</body>
</html>

时间: 2024-10-09 23:19:42

jQuery-黑白反斗棋的相关文章

javascript基础-黑白反斗棋

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-

jQuery-制作黑白反斗棋页面

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-

jQuery 黑白插件

1 add jQuery and plug in to the page <script src="js/jquery.min.js"></script> <script src="js/jQuery.BlackAndWhite.js"></script> 2 add this class to the wrapper of the image that you want make in Black and White

Codevs 1004 四子连棋

1004 四子连棋 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Gold 题目描述 Description 在一个4*4的棋盘上摆放了14颗棋子,其中有7颗白色棋子,7颗黑色棋子,有两个空白地带,任何一颗黑白棋子都可以向上下左右四个方向移动到相邻的空格,这叫行棋一步,黑白双方交替走棋,任意一方可以先走,如果某个时刻使得任意一种颜色的棋子形成四个一线(包括斜线),这样的状态为目标棋局. ● ○ ●   ○ ● ○ ● ● ○ ● ○ ○ ● ○   输入描述 Input

JQuery 学习总结及实例 !! (转载)

出自 new:http://www.jianshu.com/users/1967b163cb61/latest_articles 1.JQuery简介 普通JavaScript的缺点:每种控件的操作方式不统一,不同浏览器下有区别,要编写跨浏览器的程序非常麻烦.因此出现了很多对JavaScript的封装库,比如Prototype.Dojo.ExtJS.JQuery等,这些库对JavaScript进行了封装,简化了开发.这些库是对JavaScript的封装,也就是咱们调用JQuery的一句函数,JQ

1004 四子连棋

1004 四子连棋 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Gold 题解 题目描述 Description 在一个4*4的棋盘上摆放了14颗棋子,其中有7颗白色棋子,7颗黑色棋子,有两个空白地带,任何一颗黑白棋子都可以向上下左右四个方向移动到相邻的空格,这叫行棋一步,黑白双方交替走棋,任意一方可以先走,如果某个时刻使得任意一种颜色的棋子形成四个一线(包括斜线),这样的状态为目标棋局. ● ○ ●   ○ ● ○ ● ● ○ ● ○ ○ ● ○   输入描述 In

Codevs p1004 四子连棋

                      四子连棋 题目描述 Description 在一个4*4的棋盘上摆放了14颗棋子,其中有7颗白色棋子,7颗黑色棋子,有两个空白地带,任何一颗黑白棋子都可以向上下左右四个方向移动到相邻的空格,这叫行棋一步,黑白双方交替走棋,任意一方可以先走,如果某个时刻使得任意一种颜色的棋子形成四个一线(包括斜线),这样的状态为目标棋局. ● ○ ●   ○ ● ○ ● ● ○ ● ○ ○ ● ○   输入描述 Input Description 从文件中读入一个4*4

第23本:《棋与人生》

第23本:<棋与人生> 个人喜欢下象棋.打桥牌,作为一名程序员,一直也想写出一个中国象棋引擎来,所以很早 就关注这本书了.人生如棋,一生中需要做大量决策和选择,棋如人生,也有类似青年.中年和老年的开局.中局和残局.这本书在豆瓣上评分8.6,也说是卡斯 帕罗夫的自传,但实际上是讲述了卡斯帕罗夫如何自我认识和挑战,如何挑战自己和他人,进而如何做出最佳决策的思考过程. 看到这个决策过程,使我想到了之前看的一本书<How We Decide>,这里只讲了一章棋类博弈的决策过程. 作者一直是

Jquery初体验二

一.传统方式生成Table var peopleArr = [ { "name": "刘欢", "age": 50, "skill": "从头再来" }, { "name": "杨坤", "age": 35, "skill": "32唱演唱会" }, { "name": "那英&