這篇文章帶給大家的內容是關於js中根據json產生html表格的方法介紹(程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
之前公司有一個需求是:透過js來產生html。而且大部分都是生成表格,直接透過字串拼接的話,程式碼的可重複用性太低的,所以寫了一個通用的json轉html表格的工具。
程式碼
htmlKit = { _tags: [], html: [], _createAttrs: function (attrs) { var attrStr = []; for (var key in attrs) { if (!attrs.hasOwnProperty(key)) continue; attrStr.push(key + "=" + attrs[key] + "") } return attrStr.join(" ") }, _createTag: function (tag, attrs, isStart) { if (isStart) { return "<" + tag + " " + this._createAttrs(attrs) + ">" } else { return "</" + tag + ">" } }, start: function (tag, attrs) { this._tags.push(tag); this.html.push(this._createTag(tag, attrs, true)) }, end: function () { this.html.push(this._createTag(this._tags.pop(), null, false)) }, tag: function (tag, attr, text) { this.html.push(this._createTag(tag, attr, true) + text + this._createTag(tag, null, false)) }, create: function () { return this.html.join("") } }; function json2Html(data) { var hk = htmlKit; hk.start("table", {"cellpadding": "10", "border": "1"}); hk.start("thead"); hk.start("tr"); data["heads"].forEach(function (head) { hk.tag("th", {"bgcolor": "AntiqueWhite"}, head) }); hk.end(); hk.end(); hk.start("tbody"); data["data"].forEach(function (dataList, i) { dataList.forEach(function (_data) { hk.start("tr"); data["dataKeys"][i].forEach(function (key) { var rowsAndCol = key.split(":"); if (rowsAndCol.length === 1) { hk.tag("td", null, _data[rowsAndCol[0]]) } else if (rowsAndCol.length === 3) { hk.tag("td", {"rowspan": rowsAndCol[0], "colspan": rowsAndCol[1]}, _data[rowsAndCol[2]]) } }); hk.end() }) }); hk.end(); hk.end(); return hk.create() }
使用說明
#HtmlKit
htmlKit是建立html標籤的工具
函數名稱 | 作用 | 範例 | |||
---|---|---|---|---|---|
##start (tag, attrs) 建立未封閉標籤頭
|
|||||
|
tag (tag, attr, text) 建立封閉標籤
|
json2Html
#json轉Html範例:效果: | 語言 | |
---|---|---|
#80 | ||
90 |
以上是js中根據json產生html表格的方法介紹(程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!