var jsonstring ="";
function show01(fileinfo) {
//讀取json到字串jsonstring
file = fileinfo.files[0];
var fReader = new FileReader();
fReader.onload = function (event) {
jsonstring = event.target.result;
};
fReader.readAsText(file);
}
function parsejson(){
var jsonDoc = JSON.parse(jsonstring);
}
str ="<table border=1><tr><td>書名</td><td>作者</td><td>類別</td><td>出版日期</td><td>書號</td></tr>";
for (i=0;i<jsonDoc.length;i++)
{
str +="<tr><td>" + jsonDoc[i].title;
str +="</td><td>" + jsonDoc[i].author;
str +="</td><td>" + jsonDoc[i].category;
str +="</td><td>" + jsonDoc[i].pubdate;
str +="</td><td>" + jsonDoc[i].id;
str +="</td></tr>";
}
str +="</table>";
document.getElementById("id01").innerHTML = str;
<table border=1>
<tr>
<td>學號</td><td>姓名</td><td>電話</td><td>電子郵件</td>
</tr>
[
{
"title": "Dreamweaver CC 網站設計",
"author": "鄧文淵",
"category": "網頁設計",
"pubdate": "05/2014",
"id": "web001"
},
{
"title": "ASP.NET 3.5 網頁程式設計",
"author": "陳會安",
"category": "網頁設計",
"pubdate": "07/2014",
"id": "web002"
},
{
"title": "C#.NET 程式設計",
"author": "曹祖聖",
"category": "程式設計",
"pubdate": "11/2012",
"id": "prog001"
},
{
"title": "jQuery Mobile設計",
"author": "陳會安",
"category": "手機設計",
"pubdate": "06/2014",
"id": "mobile001"
}
]