<form id="pm_info" action="<?php echo site_url('index/PmCtl/pmadd') ?>" method="post">
<table id="pmc_table">
<tr>
<th>印刷内容
</th>
<th>纸张类型
</th>
<th>刪除
</th>
</tr>
<tr id="tr_0">
<td align="center"><input type="text" class="row-input-txt" name="print_content[]"></td>
<td align="center"><input type="text" class="row-input-txt" name="paper_type[]"></td>
<td>
<div class="icon-opr-td">
<a class="icon-del pmc_del_ref"></a>
</div>
</td>
</tr>
<tr id="addRow">
<td colspan="3">
<div class="icon-opr-td">
<a class="icon-add pmc_add_ref"></a>
</div>
</td>
</tr>
</table>
</form>
<div id="copyDiv" style="display:none;">
<tr id="copyTr" style="display:none;">
<td align="center"><input type="text" class="row-input-txt" name="print_content[]"></td>
<td align="center"><input type="text" class="row-input-txt" name="paper_type[]"></td>
<td>
<div class="icon-opr-td">
<a class="icon-del pmc_del_ref"></a>
</div>
</td>
</tr>
</div>
<script>
$(".pmc_add_ref").click(function(){
add();
}
var newIndex = 1;
function add() {
var trObj = $('#copyTr').clone();
trObj.attr('id', 'tr_' + newIndex).show();
$('#addRow').before(trObj);
newIndex++;
}
</script>