溫馨提示×

溫馨提示×

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

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

怎么在html中增加一行

發(fā)布時間:2021-06-03 15:40:02 來源:億速云 閱讀:268 作者:Leah 欄目:web開發(fā)

怎么在html中增加一行?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。


html表格新增一行和刪除一行

主要思路:現(xiàn)在頁面中寫一段你想要的html代碼樣式,然后設(shè)置為隱藏不可見(style="display: none").然后在js中獲取該段代碼,做處理后重寫回html中

怎么在html中增加一行

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>新增一行</title>
</head>
<body>
 
<table>
    <tr>
        <th>序號</th>
        <th>姓名</th>
        <th>電話</th>
        <th>地址</th>
        <th>操作</th>
    </tr>
 
    <!--這一行是隱藏的,主要用戶方便js中獲取html代碼-->
    <!--##:js中會替換成數(shù)字-->
    <tr id="show" style="display: none">
        <td>##</td>
        <td>
            <input id="name##" />
        </td>
        <td>
            <input id="phone##" />
        </td>
        <td>
            <input id="address##" />
        </td>
        <td>
           <button type="button" onclick="deleteRow('##')">刪除</button>
        </td>
    </tr>
</table>
<button type="button" onclick="addRow()">新增一行</button>
 
 
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script >
    var index = 0;//初始下標(biāo)
    var indexArr= new Array();
 
    //新增一行
    function addRow() {
        index++;
        indexArr.push(index);
 
        var showHtml = $("#show").html();
        var html = "<tr id='tr##'>"+showHtml+"</tr>";
        html = html.replace(/##/g,index);//把##替換成數(shù)字
 
        $("#show").before($(html));
 
        console.log("當(dāng)前下標(biāo)數(shù)組",indexArr);
    }
 
    //刪除一行
    function deleteRow(inde){
        $("#tr" + inde).remove();
        var a = indexArr.indexOf(parseInt(inde));
 
        if (a > -1) {
            indexArr.splice(a, 1);
            console.log("當(dāng)前下標(biāo)數(shù)組",indexArr);
        }
 
    }
</script>
</body>
</html>

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI