-1
我有一個表格,其中包含特定類型的數據和複選框。我只需要將表格的數據插入到數組中,僅在複選框被選中的情況下。這是我的代碼。當在數組中檢查時插入td標記值
<table class="table table-bordered table-striped table-condensed flip-content" style="margin-top: 10em;">
<thead class="flip-content">
<tr>
<th class="hidden-print">Include</th>
<th style="text-align: center;">Quantity</th>
<th style="text-align: center;" class="hidden-print">Cost(USD)</th>
<th style="text-align: center;" class="hidden-print">Markup(%)</th>
<th style="text-align: center;" class="hidden-print">Markup Amount</th>
<th style="text-align: center;color: #f00;" class="hidden-print">Your Profit(<?php echo $_SESSION['level_markup']; ?>%)</th>
<th style="text-align: center;" class="hidden-print">Company Profit</th>
<th style="text-align: center;">Price(USD)</th>
<th style="text-align: center;">Price Per piece</th>
<th style="text-align: center;" class="hidden-print">Actions</th>
</tr>
</thead>
<tbody style="text-align: center;">
<?php
$x=0;
foreach($query_initial as $qurintl)
{
?>
<tr class="hidden-print">
<td class="hidden-print"><input type="checkbox" value="" name="" id="checkbox1"></td>
<td> {{ quantity = <?php echo $qurintl['business_quantity']; ?> }} </td>
<td class="hidden-print"><input ng-model="basecost_<?php echo $x; ?>" ng-init="basecost_<?php echo $x; ?>=<?php echo $qurintl['business_final_price']; ?>" type="text" </td>
<td class="hidden-print"><input ng-model="markup_<?php echo $x; ?>" ng-init="markup_<?php echo $x; ?>=<?php echo $_POST['markupper']; ?>"></td>
<td class="hidden-print"> ${{ marukpamount = (basecost_<?php echo $x; ?> * markup_<?php echo $x; ?>)/100 | number:2 }}</td>
<td class="hidden-print" style="color: #f00;"> ${{ yourprofit = (marukpamount * <?php echo $_SESSION['level_markup']; ?>)/100 | number:2 }}</td>
<td class="hidden-print"> ${{ marukpamount - yourprofit | number:2 }}</td>
<td> ${{ results = basecost_<?php echo $x; ?> -- (basecost_<?php echo $x; ?> * markup_<?php echo $x; ?>)/100 | number:0 }}</td>
<td>${{ results/quantity | number:2 }}</td>
<td class="hidden-print"><input type="button" class="btn btn-danger" value="-"></td>
</tr>
<?php
$x++;
}
?>
</tbody>
</table>
請告訴我們你有什麼到目前爲止已經試過。我們不會爲你寫你的代碼.. –
對不起@ShekharChikara,但我是JavaScript的新手,我所做的所有搜索到處都沒有找到。此外,如果您不想編寫代碼,請不要傳遞任何參考鏈接或關於如何執行此操作的概述或搜索此代碼 – Pankaj
這是使用AngularJS嗎?如果是這樣,你可以用這個標記你的問題嗎? – trincot