溫馨提示×

溫馨提示×

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

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

jquery 實現(xiàn)點擊 table中一行tr自動復(fù)制本行添加到本行之后 點擊按鈕回復(fù)到初始狀態(tài)

發(fā)布時間:2020-08-10 03:22:23 來源:網(wǎng)絡(luò) 閱讀:2910 作者:ljt7560868 欄目:web開發(fā)

<!doctype html>

<html>

<head>

    <meta charset="UTF-8">

    <title></title>

    <script type="text/javascript" src="http://lib.sinaapp.com/js/jquery/1.9.1/jquery-1.9.1.js"></script>

</head>

<body>

<table id="tb">

    <tr id="show">

        <td>111</td>

        <td>111111</td>

    </tr>

<tr id="hidden" >

        <td>111</td>

        <td>111111</td>

    </tr>

    <tr id="show">

        <td>222</td>

        <td>222222</td>

    </tr>

<tr id="hidden" >

        <td>222</td>

        <td>222222</td>

    </tr>

</table>

<div><input type="button" name="btn" id="btn" value="點我" /></div>

<script type="text/javascript">

    

$(document).ready(function(){

$("#tb tr").each(function(){

$(this).bind("click",function(){

var $tr = $("#tb tr:eq("+$(this).index()+")").clone(true);

//tr.appendTo("#tb tr").eq($(this).index());

$tr.insertAfter($("#tb tr:eq("+$(this).index()+")"));

//var evenTrId = $('#tb tr:even').attr("id");

//$('#tb tr:even').attr("id","hidden_"+evenTrId);

});

});

});

function cli(){

alert($('#tb tr:odd').length);

$('#tb tr:odd').each(function(){

alert($(this).attr("id"));

$(this).remove();

});

$("#tb tr").each(function(){

var $tr = $("#tb tr:eq("+$(this).index()+")").clone(true);

$tr.insertAfter($("#tb tr:eq("+$(this).index()+")"));

});

var evenTrId = $('#tb tr:odd').attr("id")

evenTrId = evenTrId.replace("show","hidden");

$('#tb tr:odd').attr("id",evenTrId);

$('#tb tr:odd').hide();

}

</script>

</body>

</html>



向AI問一下細節(jié)

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

AI