gpt4 book ai didi

php - 可点击的 HTML 行将变量 POST 到不同的 PHP 脚本

转载 作者:行者123 更新时间:2023-11-29 20:50:14 27 4
gpt4 key购买 nike

我正在创建一个 HTML 表,在其中显示数据库中的数据。我希望能够单击整行并使用该行中的数据作为变量来执行 PHP 脚本,但我不知道如何 POST 表中的值。

我的表是这样创建的:

<table class="table table-hover" style='background-color:antiquewhite'>
<thead>
<tr>
<th>ID</th>
<th>Address</th>
<th>Customer Name</th>

</tr>
</thead>
<tbody>
<?php
while ($row = $resultSet->fetch_object()) {
?>
<tr>
<td><?php echo "{$row->ID} " ?></td>
<td><?php echo "{$row->Address} " ?></td>
<td><?php echo "{$row->Customer_Name} " ?></td>

</tr>
<?php }

?>
</tbody>
</table>

我发现了这个较旧的问题,但我认为该解决方案存在一些我无法理解的语法问题:

Clickable HTML table rows that POST to a PHP popup window

我尝试过这样的事情:

<form target='_blank' name='getID' method='POST' action='asset_details.php'>
<input type='hidden' name='id' id='id'>
<table>
<?php
while($row = mysqli_fetch_array($resultSet, MYSQLI_ASSOC)) {
echo "
<tr onclick=\"selectID('" . $row['id'] . "')\">
<td>" . $row['ID'] . "</td>
<td>" . $row['Address'] . "</td>
<td>" . $row['Customer_Name'] . "</td>
</tr>"; ?>
</table>
</form>

Javascript 部分:

function selectID(id) {
document.getID.id.value = $(this).closest('tr').attr('id');
document.getElementsByName('getID')[0].submit();
}

最佳答案

您可以通过 JavaScript 中的“this”关键字来完成此操作。我已经为你做了一个例子...
将其保存为index.php

<html>
<head>
<style>
.tr_hov:hover{
background-color:green;
}
</style>
<script src="https://code.jquery.com/jquery-3.0.0.js" integrity="sha256-jrPLZ+8vDxt2FnE1zvZXCkCcebI/C8Dt5xyaQBjxQIo=" crossorigin="anonymous"></script>
<script>
function runajax(obj){
var val = $(obj).find('td:first').text();
$.post('demo.php',{id:val},function(data,status){
document.getElementById('message').innerHTML = data;
});

}
</script>
</head>
<body>
<table class="table table-hover" style='background-color:antiquewhite' border='1'>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Address</th>

</tr>
</thead>
<tbody>



<?php

$row = array(
'one' => array('id' => '100' , 'name' => 'John' , 'addr' => 'America'),
'two' => array('id' => '101' , 'name' => 'Bush' , 'addr' => 'Briton'),
'three' => array('id' => '102' , 'name' => 'Deedi' , 'addr' => 'China'),
'four' => array('id' => '103' , 'name' => 'Jasica' , 'addr' => 'Japan')
);

foreach ($row as $x) {
echo "<tr class='tr_hov' onclick=\"runajax(this)\">
<td>{$x['id']}</td>
<td>{$x['name']}</td>
<td>{$x['addr']}</td>

</tr>";
}

?>
</tbody>
</table>
<div id="message"></div>
</body>
</html>

将此页面另存为 demo.php

<?php
$id = $_POST['id'];
echo $id;
?>

我认为它对你有帮助。

关于php - 可点击的 HTML 行将变量 POST 到不同的 PHP 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38119116/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com