嗨,我可以将 json 数据作为 html 页面中的列表获取,但我喜欢作为链接列表获取。因为当我点击链接时,它会显示详细信息。
我做了什么tenantlistmob.php
<?php
include('connection.php');
$result = mysql_query("SELECT * FROM tenanttemp");
while ($row = mysql_fetch_assoc($result))
{
$array[] = array($row['TenantFirstName']);
}
echo json_encode($array);
?>
然后我的html页面是
<!DOCTYPE HTML>
<html>
<link rel="stylesheet" href="../jasmine-device_2/styles/main.css" />
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
jQuery.getJSON("tenantlistmob.php", function (jsonData) {
jsonData= eval(jsonData);//get json array
for (i = 0; i < jsonData.length; i++)//iterate over all options
{
for ( key in jsonData[i] )//get key => value
{
$("#getname").append($("<li></li>").html(jsonData[i][key]), document.all ? i : null);
}
}
});
});
</script>
</head>
<body>
<form name="index">
<div id="getname"></div>
</form>
</body>
</html>
输出是
Humayun
Sahjahan
Bayezid
Bayezid
Asaduzzaman
Mouri
我将TenantFirstName
其作为列表获取。但我喜欢将其作为链接列表获取。因为当我单击一个名称时,它将显示该名称的详细信息。我怎样才能同时工作(作为链接列表,当单击链接时,它将在 mysql 数据库的 html 页面查询中显示详细信息)?请帮忙。