IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> JavaScript HTML 表格井字游戏 -> 正文阅读

[JavaScript知识库]JavaScript HTML 表格井字游戏

?

?index.html

<!DOCTYPE html>

<head>
    <meta name="viewport" content=
          "width=device-width, initial-scale=1.0">
    <!-- JavaScript file included -->
    <script src="tic.js"></script>
</head>

<body>
    <div id="main">
        <h1>TIC TAC TOE</h1>

        <!-- Game Instructions -->
        <p id="ins">Game starts by just Tap on
            box<br><br>First Player starts as
            <b>Player X</b><br>And<br>Second
            Player as <b>Player O</b>
        </p>


        <br><br>
        <table  cellspacing="0" cellpadding="0" border="1">
            <tbody>
                <tr>
                    <td align="center" width="20px" height="20px" id="b1" onclick=
                        "myfunc_3(); myfunc();">
                    </td>
                    <td align="center" width="20px" height="20px" id="b2" onclick=
                        "myfunc_4(); myfunc();">
                    </td>
                    <td align="center" width="20px" height="20px" id="b3" onclick=
                        "myfunc_5(); myfunc();">
                    </td>
                </tr>
                <tr>
                    <td align="center" width="20px" height="20px" id="b4" onclick=
                        "myfunc_6(); myfunc();">
                    </td>
                    <td align="center" width="20px" height="20px" id="b5" onclick=
                        "myfunc_7(); myfunc();">
                    </td>
                    <td align="center" width="20px" height="20px" id="b6" onclick=
                        "myfunc_8(); myfunc();">
                    </td>
                </tr>
                <tr>
                    <td align="center" width="20px" height="20px" id="b7" onclick=
                        "myfunc_9(); myfunc();">
                    </td>
                    <td align="center" width="20px" height="20px" id="b8" onclick=
                        "myfunc_1O();myfunc();">
                    </td>
                    <td align="center" width="20px" height="20px" id="b9" onclick=
                        "myfunc_11();myfunc();">
                    </td>
                </tr>
            </tbody>
        </table>



        <!-- Grid end here -->
        <br><br><br>
        <!-- Button to reset game -->
        <button id="but" onclick="myfunc_2()">
            RESET
        </button>

        <br><br>
        <!-- Space to show player turn -->
        <p id="print"></p>


    </div>
</body>

</html>

tic.js

// Function called whenever user tab on any box
gameover = 0;
function myfunc() {

    // Setting DOM to all boxes or input field
    var b1, b1, b3, b4, b5, b6, b7, b8, b9;
    b1 = document.getElementById("b1").innerText;
    b2 = document.getElementById("b2").innerText;
    b3 = document.getElementById("b3").innerText;
    b4 = document.getElementById("b4").innerText;
    b5 = document.getElementById("b5").innerText;
    b6 = document.getElementById("b6").innerText;
    b7 = document.getElementById("b7").innerText;
    b8 = document.getElementById("b8").innerText;
    b9 = document.getElementById("b9").innerText;
    // Checking if Player X won or not and after
    // that disabled all the other fields
    if (b1 === 'X' && b2 === 'X' && b3 === 'X') {
        document.getElementById('print')
                .innerHTML = "Player X won";
        window.alert('Player X won');
        gameover = 1;
    } else if (b1 === 'X' && b4 === 'X' && b7 === 'X') {
        document.getElementById('print')
                .innerHTML = "Player X won";
        window.alert('Player X won');
        gameover = 1;
    } else if (b7 === 'X' && b8 === 'X' && b9 === 'X') {
        document.getElementById('print')
                .innerHTML = "Player X won";
        window.alert('Player X won');
        gameover = 1;
    } else if (b3 === 'X' && b6 === 'X' && b9 === 'X') {
        document.getElementById('print')
                .innerHTML = "Player X won";
        window.alert('Player X won');
        gameover = 1;
    } else if (b1 === 'X' && b5 === 'X' && b9 === 'X') {
        document.getElementById('print')
                .innerHTML = "Player X won";
        window.alert('Player X won');
        gameover = 1;
    } else if (b3 === 'X' && b5 === 'X' && b7 === 'X') {
        document.getElementById('print')
                .innerHTML = "Player X won";
        window.alert('Player X won');
        gameover = 1;
    } else if (b2 === 'X' && b5 === 'X' && b8 === 'X') {
        document.getElementById('print')
                .innerHTML = "Player X won";
        window.alert('Player X won');
        gameover = 1;
    } else if (b4 === 'X' && b5 === 'X' && b6 === 'X') {
        document.getElementById('print')
                .innerHTML = "Player X won";
        window.alert('Player X won');
        gameover = 1;
    }

    // Checking of Player X finsh
    // Checking for Player O starts, Is player O won or
    // not and after that disabled all the other fields
    else if (b1 === 'O' && b2 === 'O' && b3 === 'O') {
        document.getElementById('print')
                .innerHTML = "Player O won";
        window.alert('Player O won');
        gameover = 1;
    } else if (b1 === 'O' && b4 === 'O' && b7 === 'O') {
        document.getElementById('print')
                .innerHTML = "Player O won";
        window.alert('Player O won');
        gameover = 1;
    } else if (b7 === 'O' && b8 === 'O' && b9 === 'O') {
        document.getElementById('print')
                .innerHTML = "Player O won";
        window.alert('Player O won');
        gameover = 1;
    } else if (b3 === 'O' && b6 === 'O' && b9 === 'O') {
        document.getElementById('print')
                .innerHTML = "Player O won";
        window.alert('Player O won');
        gameover = 1;
    } else if (b1 === 'O' && b5 === 'O' && b9 === 'O') {
        document.getElementById('print')
                .innerHTML = "Player O won";
        window.alert('Player O won');
        gameover = 1;
    } else if (b3 === 'O' && b5 === 'O' && b7 === 'O') {
        document.getElementById('print')
                .innerHTML = "Player O won";
        window.alert('Player O won');
        gameover = 1;
    } else if (b2 === 'O' && b5 === 'O' && b8 === 'O') {
        document.getElementById('print')
                .innerHTML = "Player O won";
        window.alert('Player O won');
        gameover = 1;
    } else if (b4 === 'O' && b5 === 'O' && b6 === 'O') {
        document.getElementById('print')
                .innerHTML = "Player O won";
        window.alert('Player O won');
        gameover = 1;
    }

    // Checking of Player O finsh
    // Here, Checking about Tie
    else if ((b1 === 'X' || b1 === 'O') && (b2 === 'X'
            || b2 === 'O') && (b3 === 'X' || b3 === 'O') &&
            (b4 === 'X' || b4 === 'O') && (b5 === 'X' ||
            b5 === 'O') && (b6 === 'X' || b6 === 'O') &&
            (b7 === 'X' || b7 === 'O') && (b8 === 'X' ||
            b8 === 'O') && (b9 === 'X' || b9 === 'O')) {
        document.getElementById('print')
                .innerHTML = "Match Tie";
        window.alert('Match Tie');
        gameover = 1;
    } else {

        // Here, Printing Result
        if (flag === 1) {
            document.getElementById('print')
                    .innerHTML = "Player X Turn";
        } else {
            document.getElementById('print')
                    .innerHTML = "Player O Turn";
        }
    }
}

// Function to reset game
function myfunc_2() {
    location.reload();
    document.getElementById('b1').innerText = '';
    document.getElementById("b2").innerText = '';
    document.getElementById("b3").innerText = '';
    document.getElementById("b4").innerText = '';
    document.getElementById("b5").innerText = '';
    document.getElementById("b6").innerText = '';
    document.getElementById("b7").innerText = '';
    document.getElementById("b8").innerText = '';
    document.getElementById("b9").innerText = '';
    gameover = 0;
}

// Here onwards, functions check turn of the player
// and put accordingly innerText X or O
flag = 1;
function myfunc_3() {
    if (gameover === 0) {
        if (flag === 1) {
            if (document.getElementById('b1').innerText === '') {
                document.getElementById("b1").innerText = "X";
                flag = 0;
            }
        } else {
            if (document.getElementById('b1').innerText === '') {
                document.getElementById("b1").innerText = "O";
                flag = 1;
            }
        }
    }
}

function myfunc_4() {
    if (gameover === 0) {
        if (flag === 1) {
            if (document.getElementById('b2').innerText === '') {
                document.getElementById("b2").innerText = "X";
                flag = 0;
            }
        } else {
            if (document.getElementById('b2').innerText === '') {
                document.getElementById("b2").innerText = "O";
                flag = 1;
            }
        }
    }
}

function myfunc_5() {
    if (gameover === 0) {
        if (flag === 1) {
            if (document.getElementById('b3').innerText === '') {
                document.getElementById("b3").innerText = "X";
                flag = 0;
            }
        } else {
            if (document.getElementById('b3').innerText === '') {
                document.getElementById("b3").innerText = "O";
                flag = 1;
            }
        }
    }
}

function myfunc_6() {
    if (gameover === 0) {
        if (flag === 1) {
            if (document.getElementById('b4').innerText === '') {
                document.getElementById("b4").innerText = "X";
                flag = 0;
            }
        } else {
            if (document.getElementById('b4').innerText === '') {
                document.getElementById("b4").innerText = "O";
                flag = 1;
            }
        }
    }
}

function myfunc_7() {
    if (gameover === 0) {
        if (flag === 1) {
            if (document.getElementById('b5').innerText === '') {
                document.getElementById("b5").innerText = "X";
                flag = 0;
            }
        } else {
            if (document.getElementById('b5').innerText === '') {
                document.getElementById("b5").innerText = "O";
                flag = 1;
            }
        }
    }
}

function myfunc_8() {
    if (gameover === 0) {
        if (flag === 1) {
            if (document.getElementById('b6').innerText === '') {
                document.getElementById("b6").innerText = "X";
                flag = 0;
            }
        } else {
            if (document.getElementById('b6').innerText === '') {
                document.getElementById("b6").innerText = "O";
                flag = 1;
            }
        }
    }
}

function myfunc_9() {
    if (gameover === 0) {
        if (flag === 1) {
            if (document.getElementById('b7').innerText === '') {
                document.getElementById("b7").innerText = "X";
                flag = 0;
            }
        } else {
            if (document.getElementById('b7').innerText === '') {
                document.getElementById("b7").innerText = "O";
                flag = 1;
            }
        }
    }
}

function myfunc_1O() {
    if (gameover === 0) {
        if (flag === 1) {
            if (document.getElementById('b8').innerText === '') {
                document.getElementById("b8").innerText = "X";
                flag = 0;
            }
        } else {
            if (document.getElementById('b8').innerText === '') {
                document.getElementById("b8").innerText = "O";
                flag = 1;
            }
        }
    }
}

function myfunc_11() {
    if (gameover === 0) {
        if (flag === 1) {
            if (document.getElementById('b9').innerText === '') {
                document.getElementById("b9").innerText = "X";
                flag = 0;
            }
        } else {
            if (document.getElementById('b9').innerText === '') {
                document.getElementById("b9").innerText = "O";
                flag = 1;
            }
        }
    }
}

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2021-08-12 16:30:39  更:2021-08-12 16:32:33 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 8:52:11-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码