作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 PHP 中将 json_encode 结果中的每个元素显示为表格格式(见下文)。在本例中,jQuery 代码(在 header 部分)和 PHP 代码(在正文部分)位于同一个 PHP 页面中。
有人可以帮助我吗?
+-------+-------+
|fruit |price |
+-------+-------+
|apple |1.2 |
+-------+-------+
|pear |1.5 |
+-------+-------+
|orange |1.0 |
+-------+-------+
test.php的结果:
[{"fruit":"apple","price":1.2},{"fruit":"pear","price":1.5},{"fruit":"orange","price":1.0}]
以上代码是test.php使用json_encode()的结果。
jQuery:
$(document).ready(function(){
$.ajax({
type: "POST",
dataType:"Json",
url: "test.php",
success: function(result){
}
});
});
最佳答案
您可以使用以下内容:
$(document).ready(function(){
var json_array = '';
$.ajax({
type: "POST",
dataType:"Json",
url: "test.php",
success: function(result){
// Parse JSON
var array_json = $.parseJSON(array_json);
// We add each row in the table
$.each(array_json, function(){
$('#results').append('<tr><td>' + this.fruit + '</td><td>' + this.price + '</td></tr>');
});
}
});
});
使用以下 HTML:
<table id="results">
<tr>
<th>Fruit</th>
<th>Price</th>
</tr>
</table>
(根据您的 HTML 结构更改 ID)
关于php - 如何将 json_encode 结果中的每个元素显示为 PHP 表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8263084/
我是一名优秀的程序员,十分优秀!