您好,登錄后才能下訂單哦!
<!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>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。