91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JavaScript如何實現動態生成表格

發布時間:2021-12-22 12:38:30 來源:億速云 閱讀:233 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關JavaScript如何實現動態生成表格的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

前言

在這里實現一個動態添加表格的案例,當點擊添加按鈕時,可以彈出一個表單,然后將輸入的內容添加到表格中,也可以將表格中的整行內容清除。

實現思路

先創建一個表格和一個表單,將表單中輸入的內容動態添加進表格中,表單頁面右上角有一個關閉按鈕,當點擊時,可以將表單頁面關閉并將表格頁面顯示。為了頁面美觀,我將添加數據的按鈕放在了表格的<tfoot></tfoot>中,將動態生成的表格數據添加到<tbody><tbody>中,當點擊添加按鈕時,隱藏表格,并顯示表單,在表單中填寫要添加的信息,然后獲取輸入的信息,通過jquery生成表格的一行元素,并將獲得的值添加進去,最后將這一行添加到<tbody><tbody>的最后一行,當點擊表單頁面的添加按鈕時,讓表單隱藏,并顯示修改后的變革,因為還要實現動態刪除功能,所以需要給表格中的每一行元素添加一個刪除屬性(超鏈接),當我們點擊刪除時,獲取到其對應的行,進行刪除操作。

實現代碼 

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style>
        * {
            padding: 0;
            margin: 0;
        }
        table {
            width: 410px;
            margin: 100px auto 0;
            text-align: center;
            border-collapse: collapse;
            border-spacing: 0;
            border: 1px solid #ccc;
        }
        th,
        td {
            width:150px;
            height: 40px;
            border: 1px solid #ccc;
            padding: 10px;
        }

        a{
            text-decoration: none;
        }
        .btnAdd {
            width: 110px;
            height: 30px;
            font-size: 20px;
        }
        .item {
            position: relative;
            padding-left: 100px;
            padding-right: 20px;
            margin-bottom: 34px;
        }

        .lb {
            position: absolute;
            left: 0;
            top: 0;
            display: block;
            width: 100px;
            text-align: right;
        }

       .txt {
            width: 300px;
            height: 32px;
        }
        .form-add {
            position: absolute;
            top: 100px;
            left: 578px;
            border: 1px solid #ccc;
            margin-left: -197px;
            padding-bottom: 20px;
            display: none;
        }
        .title {
            background-color: #f7f7f7;
            border-width: 1px 1px 0 1px;
            border-bottom: 0;
            margin-bottom: 15px;
            position: relative;
        }

        span {
            width: auto;
            height: 18px;
            font-size: 16px;
            color: rgb(102, 102, 102);
            text-indent: 12px;
            padding: 8px 0px 10px;
            margin-right: 10px;
            display: block;
            overflow: hidden;
            text-align: left;
        }

        .title div {
            width: 16px;
            height: 20px;
            position: absolute;
            right: 10px;
            top: 6px;
            font-size: 30px;
            line-height: 16px;
            cursor: pointer;
        }

        .submit {
            text-align: center;
        }

        .submit input {
            width: 170px;
            height: 32px;
        }
    </style>

</head>
<body>
    <!--按鈕和表單-->
        <table>
            <thead>
            <tr>
                <th>班級</th>
                <th>姓名</th>
                <th>學號</th>
                <th>操作</th>
            </tr>
            </thead>
            <tbody id="j_tb">
            <tr>
                <td>1班</td>
                <td>小王</td>
                <td>001</td>
                <td><a href="javascrip:;" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  class="get">刪除</a></td>
            </tr>
            <tr>
                <td>2班</td>
                <td>小熊</td>
                <td>002</td>
                <td><a href="javascrip:;" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  class="get">刪除</a></td>
            </tr>
            </tbody>
            <tfoot>
                <tr>
                    <td id="j_btnAddData" class="btnAdd" colspan="4">添加數據</td>
                </tr>
            </tfoot>
        </table>
    <!--添加數據的表單-->
    <div id="j_formAdd" class="form-add">
        <div class="title">
            <span>添加數據</span>
            <div id="j_hideFormAdd">×</div>
        </div>
        <div class="item">
            <label class="lb" for="">班級:</label>
            <input class="txt" type="text" id="classes" placeholder="請輸入班級">
        </div>
        <div class="item">
            <label class="lb" for="">姓名:</label>
            <input class="txt" type="text" id="uname" placeholder="請輸入姓名">
        </div>
        <div class="item">
            <label class="lb" for="">學號:</label>
            <input class="txt" type="text" id="order" placeholder="請輸入學號">
        </div>
        <div class="submit">
            <input type="button" value="添加" id="j_btnAdd">
        </div>
    </div>
</body>
</html>

<script src="jquery.js"></script>
<script>
    $(function () {
        $('#j_btnAddData').click(function () {
            $('#j_formAdd').show();
            $('table').hide()
        });
        $('#j_hideFormAdd').click(function () {
            $('#j_formAdd').hide();
            $('table').show()
        });
        $('#j_btnAdd').click(function () {
            $('table').show()
            $('#j_formAdd').hide();
            var classes = $('#classes').val(); 
            var uname = $('#uname').val(); 
            var order = $('#order').val(); 
    
            var New =$( '<tr>' +
                            '<td>'+classes+'</td>'+
                            '<td>'+uname+'</td>' +
                            '<td>'+order+'</td>' +
                            '<td><a href="javascrip:;" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  class="get">刪除</a></td>' +
                         '</tr>' );

            $('#j_tb').append(New);
        });
        $('#j_tb').on('click','.get', function () {
            $(this).parent().parent().remove();
        });
    });
</script>

實現效果

JavaScript如何實現動態生成表格

感謝各位的閱讀!關于“JavaScript如何實現動態生成表格”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东台市| 微山县| 仙游县| 阿拉善右旗| 正蓝旗| 宜君县| 科技| 陕西省| 噶尔县| 金阳县| 桃园县| 八宿县| 扶沟县| 九江县| 高阳县| 加查县| 鹰潭市| 全州县| 六安市| 丹寨县| 扎鲁特旗| 滨州市| 丰原市| 安顺市| 金平| 商丘市| 安康市| 出国| 静乐县| 余江县| 夏津县| 桂平市| 武定县| 镇康县| 梅州市| 凌云县| 五莲县| 肇州县| 新民市| 繁昌县| 皮山县|