JQuery を使用して、任意のテーブルで選択した行のコンテンツを取得し、それらの値を投稿配列に送信するにはどうすればよいですか?
これが私のテーブルです:
<?php if(isset($products)){ ?>
<?php foreach( $products as $product){ ?>
<tr id="<?php echo $product['order_product_id']; ?>">
<td class="center"><input checked="checked" type="checkbox" name="selected-p[]" value="<?php echo $product['order_product_id']; ?>" /></td>
<td class="left"><input type="text" name="order_id" value="<?php echo $product['order_id']; ?>"/></td>
<td class="left"><input type="text" name="product_id" value="<?php echo $product['product_id']; ?>"/></td>
<td class="left"><input type="text" name="name" value="<?php echo $product['name']; ?>"/></td>
<td class="left"><input type="text" name="price" value="<?php echo $product['price']; ?>"/></td>
<td class="left"><input type="text" name="cost" value="<?php echo $product['cost']; ?>"/></td>
<td class="left"><input type="text" name="product_cost" value="<?php echo $product['product_cost']; ?>"/></td>
<td class="left"><input type="text" name="logistics_cost" value="<?php echo $product['logistics_cost']; ?>"/></td>
<td class="left"><input type="text" name="inventory_cost" value="<?php echo $product['inventory_cost']; ?>"/></td>
<td class="left"><font dir="ltr"><?php echo $product['date_added']; ?></font></td>
</tr>
<?php } ?>
<?php } ?>
質問の作成者による HTML のレンダリング:
<tr id="39118"><td class="center"><input type="checkbox" name="selected-p[]" value="39118"></td> <td class="left"><input type="text" name="order_id" value="10141"></td> <td class="left"><input type="text" name="product_id" value="881"></td> <td class="left"><input type="text" name="name" value="أساور الصداقة"></td> <td class="left"><input type="text" name="price" value="30.0000"></td> <td class="left"><input type="text" name="cost" value="9.0000"></td> <td class="left"><input type="text" name="product_cost" value="9.00"></td> </tr>