html checkbox全選反選

<html>
<body>
 
    <table border="1">
        <tr>
            <th><input type="checkbox" οnclick="swapCheck()" /></th>
            <th>Month</th>
            <th>Savings</th>
        </tr>
        <tr>
            <td><input type="checkbox" /></td>
            <td>January</td>
            <td>$100</td>
        </tr>
        <tr>
            <td><input type="checkbox" /></td>
            <td>February</td>
            <td>$150</td>
        </tr>
    </table>
 
    <script type="text/javascript"
        src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
 
    <script type="text/javascript">
        //checkbox 全選/取消全選
        var isCheckAll = false;
        function swapCheck() {
            if (isCheckAll) {
                $("input[type='checkbox']").each(function() {
                    this.checked = false;
                });
                isCheckAll = false;
            } else {
                $("input[type='checkbox']").each(function() {
                    this.checked = true;
                });
                isCheckAll = true;
            }
        }
    </script>
 
</body>
</html>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章