說明:(圖片自備, 名稱為 jpg[0,2].jpg? class為( one two three)對應 前面的 0,1,2)
<!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>
??? <title></title>
??? <script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
??? <script type="text/javascript">
??????? $(function () {
??????????? var imgClass = "null";
??????????? function hideTishi() {
??????????????? if ($("#tishi").attr("display") == "block") {
??????????????????? $("#tishi").hide("1000");
??????????????? }
??????????? }
??????????? //??? setInterval("hideTishi()", "2000");
??????????? var errorCounts = 0;
?????????
??????????? var rows = 7, columns = 7;
??????????? for (var i = 0; i < rows; i++) {
??????????????? $("table").append("<tr></tr>");
??????????????? for (var j = 0; j < columns; j++) {
??????????????????? var root = Math.random();
??????????????????? var s = root * 10;
??????????????????? var num = s % 2;
??????????????????? var classes = "";
??????????????????? switch (Math.round(num)) {
??????????????????????? case 0: classes = "one"; break;
??????????????????????? case 1: classes = "two"; break;
??????????????????????? case 2: classes = "three"; break;
??????????????????? }
??????????????????? var html = "<td><img src=\"img/" + Math.round(num) + ".jpg\" class=\"" + classes + "\" /></td>";
??????????????????? $("table").find("tr:eq(" + i + ")").append(html);
??????????????? }
??????????? }
?
?
?
??????????? $("img").click(function () {
??????????????? $("#tishi").hide("1000");
??????????????? //初次點擊
??????????????? if (imgClass == "null") {
??????????????????? imgClass = $(this).attr("class");
??????????????? }
??????????????? //兩次點的圖片相同
??????????????? if ($(this).attr("class") == imgClass) {
??????????????????? $(this).attr("state", "click");
??????????????? }
??????????????? else {//兩次點擊不同時
??????????????????? $("[state]").removeAttr("state");
??????????????????? $("#tishi").show("2000");
??????????????????? $("#errorCount").val("當前錯誤" + parseInt(errorCounts + 1, 10) + "次");
??????????????????? errorCounts += 1;
??????????????????? imgClass = "null";
??????????????? }
??????????????? if ($("[state]").length > 1) {
??????????????????? while ($("[state]").length > 0) {
??????????????????????? var img = $("[state]");
??????????????????????? img.hide("1000");
??????????????????????? img.removeAttr("state");
??????????????????????? imgClass = "null";
??????????????????????? jindu += 1;
??????????????????? }
??????????????? }
??????????? })
?
?
??????? })
???
???
??? </script>
??? <style type="text/css">
??????? .one, .two, .three
??????? {
??????????? width: 80px;
??????????? height: 80px;
??????? }
??? </style>
</head>
<body>
??? <input type="button" id="tishi" style="border: none; font-size: 20px; display: none;"
??????? value="兩次不一樣,請從新選擇從選" />
??? <input type="button" id="errorCount" style="font-size: 20px; color: Red; position: absolute;
??????? top: 0px; left: 300px;" count="0" value="當前錯誤0次" />
??? <table style="position: absolute; top: 40px;">
??? </table>
</body>
</html>