使用 json 值填充 html 表
我在同一文件夹中有 table.html、data.php 和 json.csv。
data.php 正在执行 fopen("json.csv","r")
来读取 json.csv。
如何将 json 对象显示为 table.html 中的表格?
<html>
<head>
<script type="text/javascript" src="jquery.js">
function display(){
$.post('data.php',function(data){
$("#txtJSON").html(data);
});
}
</script>
</head>
<body onload="display()">
<table id="#jobtable">
<input type="text" id="txtJSON" />
</table>
</body>
</html>
I have an table.html, data.php and json.csv within the same folder.
data.php is doing fopen("json.csv","r")
to read from json.csv.
How can I display the json objects as a table within table.html?
<html>
<head>
<script type="text/javascript" src="jquery.js">
function display(){
$.post('data.php',function(data){
$("#txtJSON").html(data);
});
}
</script>
</head>
<body onload="display()">
<table id="#jobtable">
<input type="text" id="txtJSON" />
</table>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
伪代码
php
html
psuedocode
php
html
您可以将 json.csv 输出转换为 php 数组并合并 data.php & table.html 在该文件中的一个 php 文件中使用
foreach
创建一个 html 表you can convert json.csv output in a php array and merge data.php & table.html in one php file in that file make a html table with
foreach
如果您使用 JavaScript 进行任何广泛的 DOM 操作,您的情况会更好。更具体地说, jQuery 插件 JSON-to-table 可以完全满足您的需求。
You will be better off if you use JavaScript for any extensive DOM manipulation. More specifically, jQuery plugin JSON-to-table can do exactly what you want.