我在检索 jquery 数据表行中特定单元格的详细信息时遇到问题。我想要做的是数据表中一行的特定单元格我试图检索所有特定于它的数据并将其显示为输出
例如,从数据库中检索所有国家名称并显示在数据表的特定列中。现在我想要的是,当我单击国家名称时,应显示与其对应的所有城市。我希望它足够有意义。我需要在不刷新页面的情况下动态执行 dis 。
这是代码的一瞥:
$(document).ready(function() {
oTable = $('#datatables').dataTable( {
alert("hi")
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "../getcities.php",
"aData" : "POST","getcities.php?cname="+cname
"aoColumns": [
{ "sClass": "center", "bSortable": false },
null,
{ "sClass": "center" },
]
} );
$('#datatables tbody tr td').live( 'click', function () {
alert("hi")
var nTr = this.parentNode.parentNode;
// I need to display the data here in a dialog box
} );
}
上面的代码可能不完全正确,因为我说我仍然是 jquery 数据表和 Ajax 的新手,这是我正在尝试的 html:
<div>
<table id = "datatables" class="display">
<thead>
<tr>
<th></th>
<th>Country Name</th>
</tr>
<thead>
<tbody>
<?while($row=mysql_fetch_array($result)){
<tr>
<td class="center" id="cname" value="cname"><?= $row['cname']?></td>
</tr>
<?}}?>
</tbody>
getcities.php 中的代码:
// Here I am trying to store all the cities corresponding to the country name in an array and returning it
<?php
country = $_POST['cname'];
var arr = new Array();
arr = mysql_fetch_array(mysql_query("SELECT cityname FROM dbtable WHERE cname = '.country.'"))
return arr;
?>
由于我是 Datatables 的新手,所以我不明白如何实现这一点。我使用 PHP 作为脚本语言
请帮忙