我有一個表格顯示一些值。在每一行中都有一個Order_ID和一個按鈕。單擊按鈕時從表格中獲取價值
如何在$ Order_ID中獲取我的值,以便在單擊按鈕時顯示(警告)?
<tbody>
<?php
foreach($menuextra_result as $transaction)
{
?>
<tr>
$order_id = isset($transaction['order_id'])?($transaction['order_id']) :"";
?>
<?php if($order_id){ ?>
<td><div id="orderID"><?= $order_id ?></a></td>
<?php } else {?>
<td><div ><span style="color:red">MANGLER</span></td>
<?php }?>
style="color:red">MISSING</span></td>
<?php }?>
//There's more here, but did not bother to show it, because it was irrelevant.
<td><input type="submit" onclick="getElementById" value="Yes "></td>
<?php }
?>
</tr>
<?php
}
?>
</tbody>
這是我試圖
<script type="text/javascript">
function getElementById()
{
el = document.getElementById('order_id');
alert(el);
}
</script>
但在點擊按鈕時,什麼也沒發生
你在找什麼?對於每一行,您都有一個ID和一個按鈕?然後點擊,你想提醒該特定行的ID? – Ahmed
是的,謝謝:) – Zaz
有沒有ID'order_id'的元素? –