1
我已經嘗試了一段時間來重複jQuery插入行/插入列功能,我有一個HTML表的CSS表工作。我已經搜索並嘗試了一個沒有成功的解決方案。用css表插入行/列
這裏是fiddle到我的工作,我拿出了我的企圖代碼,因爲它沒用。
我的代碼列在下面。 感謝您的幫助。
HTML
div class="ws-css-table" >
<div class="ws-css-table-tr">
<div class="ws-css-table-td" id="1"></div>
<div class="ws-css-table-td" id="2"></div>
</div>
<div class="ws-css-table-tr">
<div class="ws-css-table-td" id="3"></div>
<div class="ws-css-table-td" id="4"></div>
</div>
</div>
<br/>
<button id="css-irow">CSS-Insert Row</button><button id="css-icol">CSS-Insert Column</button><br/><br/>
<br/>
<br/>
<table border="1" id="mtable">
<tbody>
<tr>
<td class="container"></td>
<td class="container"></td>
</tr>
<tr>
<td class="container">a</td>
<td class="container">b</td>
</tr>
</tbody>
</table><br/>
<button id="irow">Insert Row</button>
<button id="icol">Insert Column</button><br/><br/>
<br/>There are <span id="rowcount"></span> rows
<br/>There are <span id="colcount"></span> columns
jQuery的
$('#css-irow').click(function(){
});
$('#css-icol').click(function(){
});
////////////////////////////////////////////
$('#irow').click(function(){
$("#mtable tbody tr:last").clone().appendTo('#mtable tbody').find("td").empty();
var rowCount = $('#mtable tr').length;
$("#rowcount").text(rowCount)
});
////////////////////////////////////////////
$('#icol').click(function(){
$('#mtable tr').append($("<td class='container'>"));
$('#mtable thead tr>td:last').html($('#col').val());
$('#mtable tbody tr').each(function(){$(this).children('td:last').append($(''))});
var col = $('#mtable tbody tr:first > td').length;
$("#colcount").text(col);
});
CSS
.ws-css-table {
display: table;
}
.ws-css-table-tr {
display: table-row;
}
.ws-css-table-td {
display: table-cell;
border:1px solid #000;
width: 20px;
height:20px;
text-align:center;
vertical-align:middle;
}
你是什麼意思的CSS表?? ?? :| –
@RajaprabhuAravindasamy - 你是什麼意思的「你是什麼意思的CSS表?? ??」 ......除了語義 – Jesse
之外,在這裏沒有看到任何混淆如果我的解釋不是很清楚,那很抱歉。我希望小提琴能幫助解釋。我的意思是一個CSS表是CSS代碼是像一個HTML表格。 – user1763812