0

我正在从数据库中拉下两张表。有一个 Javascript 函数可以Table2Table1. 我一直在尝试做的是从页面Table1上获取数据,confirm_trade.php这样我就可以将其放入数据库中,但不知道如何提取该行(item_id)。我认为将表格放在一个表格中可以让我通过 访问它们,$_POST但这不起作用。如何将标识符添加到 jquery 行以便我可以在confirm页面上抓取?

来自 jQuery 函数的附加行是我需要 item_id 的行。

function addto(obj)
{

var $row = $(obj).parents("tr");
var $table = $("#tradee");
var item_id = $row.find(".item-id").text();
var item_name = $row.find(".item-name").text();
var item_desc = $row.find(".item-desc").text();

var newTR = $("<tr><td>"+item_id+"</td><td>"+item_name+
"</td><td>"+item_desc+"</td></tr>");
$table.append(newTR);

 }     

表2:

   <div id='fixedDiv'> 
   <form action="confirm.php" method="post">        
   <table align="center" id="Table2">

    <tr><td>Other Item</td></tr>


    <?php while($rowi =$item->fetch_assoc())
    {?>

    <tr>
    <td>
        <?php echo $rowi['item_id']; ?>
    </td>
    <td>
        <?php echo $rowi['item_name']; ?>
    </td>
    <td><?php echo $rowi['item_description'];?></td>

    </tr>
    <?php } ?>

    <tr>
    <td><input type="submit" name="submit" value="Continue"/></td>
    </tr>
</table>
</form>
    </div>

    <br>

表格1:

        <table align="center" id="Table1">
        <tr><th>item_id</th>
            <th>Cat_id</th>
            <th>Name</th>
            <th>Description</th>
        </tr>
    <?php while($row =$item_results->fetch_assoc())
    {?>
    <tr></tr>
    <tr>
    <td class="item-id"> <?php echo $row['item_id']; ?> </td>
    <td><?php echo $cat_id = $row['cat_id']; ?> </td>

        <td class="item-name"><?php echo $item_id = $row['item_name'];?></td>

        <td class="item-desc"><?php echo $item_descrip = $row['item_description'];?>
        </td>

        <td><input type="button" class="added" onclick="addto(this)" 
            value="Add" />
        <td><input type="button" class="removed" onclick="remove()" 
        value="Remove" >
        </td>

        </tr>
    <?php } ?>

    </table>
4

1 回答 1

0

从您的代码来看,您可以使用<input type="hidden" name="some_hidden_data" value="field-value">. 确保你也用<form method="post"></form>

然后该hidden字段将包含为 $_POST['hidden_​​field_name'];

于 2013-08-01T04:27:16.590 回答