-1
以下は私のテーブルコードAdd New
ボタンです。 Onclick Add New
ボタン新しい行が作成されます。あなたはこれを見ることができます。ユーザは 最後に入力借方と貸方の値をすべて借方の値は となるはずです。計算と合計は、貸方の価値に対して表示され、同じでなければなりません。jQueryですべての行の合計を計算するには?
のjQueryコード:私は 新しい行を作成するためにjQueryを使用しています
<script type="text/javascript">
$("#add, .check ").click(function() {
$('#datatable-buttons tbody>tr:last')
.clone(true)
.insertAfter('#datatable-buttons tbody>tr:last').find('input').each(function(){
$(this).val('');
});
});
</script>
HTMLテーブルコード:
:画像の下<table id="datatable-buttons" class="table table-striped jambo_table bulk_action">
<thead>
<tr class="headings">
<th>
<input type="checkbox" id="check-all" class="flat">
</th>
<th class="column-title">Account</th>
<th class="column-title">Debits</th>
<th class="column-title">Credits</th>
<th class="column-title">Description</th>
<th class="column-title">Name</th>
<th class="column-title no-link last"><span class="nobr">Action</span>
</th>
<th class="bulk-actions" colspan="7">
<a class="antoo" style="color:#fff; font-weight:500;">Bulk Actions (<span class="action-cnt"> </span>) <i class="fa fa-chevron-down"></i></a>
</th>
</tr>
</thead>
<tbody>
<tr class="even pointer">
<td class="a-center ">
<input type="checkbox" class="flat" name="table_records">
</td>
<td class=" "><select class="form-control" name="journalname">
<option>Choose option</option>
<?php
$sql = mysqli_query($conn,'SELECT * FROM `chartofaccounts`');
while ($row1 = mysqli_fetch_array($sql))
{?>
<option value="<?php echo $row1["name"];?>"><?php echo $row1["name"];?></option>
<?php }?>
</select></td>
<td class=""><input class="form-control" type="text" name="debit" ></td>
<td class=" "><input class="form-control" type="text" name="credit"></td>
<td class=" "><input class="form-control" type="text" name="descc"></td>
<td class=" "><input class="form-control" type="text" name="name"></td>
<td class=" last"><a href="#">View</a>
</td>
</tr>
</tbody>
</table>
<button type="button" id="add">Add New</button>
はあなたに明確な理解が得られます
1.検索タイトルは重複3.そうでない場合は、重複(そう) '<>'ボタンをクリックして、[MCVE]を作成しているので、 PHPなしで、重複していない理由を説明してください – mplungjan
あなたは問題のことを決して言わなかった。スクリーンショットだけが含まれていますが、あなたが抱えている困難を記述していません。 –
それは重複しません。私のようなjqueryを持たない他のすべての例。それは 'add new'スクリプトを追加する問題です。私は値を追加して和を表示するために立ち往生しています –