是否可以顯示來自json的數據html? 我有例子,但它只是表。是否有可能存儲數據json到html(不是表格)
<table id="tables"
data-url="comments.php"
data-row-style="rowStyle"
data-toggle="table"
data-show-refresh="true"
data-show-toggle="true"
data-show-columns="true"
data-search="true"
data-select-item-name="toolbar1"
data-pagination="true"
data-sort-name="name"
data-sort-order="desc">
<thead>
<tr>
<th data-field="name" data-sortable="true" data-align="left">Name</th>
<th data-field="comments" data-sortable="true" data-align="left">comments</th>
</tr>
</thead>
<tr>
</tr>
</table>
我要顯示/加載數據從JSON來HTML:
<h3>name</h3>//data from json
<p>comments</p>//data from json
的comments.php
<?php
header('content-type:application/json');
include 'connection.php';
$select = mysql_query("select * from comments");
$row=array();
while($row=mysql_fetch_array($select))
{
$arrayx=array( "comments"=>$row['comments'],
"name"=>$row['name']);
$rows[] = $arrayx;
}
echo json_encode($rows);
?>
我有例如JSON像..
是的,使用AJAX。 –
*「我有示例,但它僅用於表格」* - 您的示例僅爲HTML,它根本沒有與JSON的連接。您將使用什麼相應的JS來從JSON填充該表格? – nnnnnn
我已添加jsonComments.php –