明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

html里table表數(shù)據(jù)如何轉(zhuǎn)為Json格式

[摘要]這次給大家?guī)韍tml里table表數(shù)據(jù)如何轉(zhuǎn)為Json格式,html里table表數(shù)據(jù)轉(zhuǎn)為Json格式的注意事項有哪些,下面就是實戰(zhàn)案例,一起來看一下。<table>表數(shù)據(jù)轉(zhuǎn) Json 格式的javascript函數(shù)如下 <script> var keysArr = ne...
這次給大家?guī)韍tml里table表數(shù)據(jù)如何轉(zhuǎn)為Json格式,html里table表數(shù)據(jù)轉(zhuǎn)為Json格式的注意事項有哪些,下面就是實戰(zhàn)案例,一起來看一下。

<table>表數(shù)據(jù)轉(zhuǎn) Json 格式的javascript函數(shù)如下

<script> 
var keysArr = new Array("key0", "key1","key2"); 
function TableToJson(tableid) { //tableid是你要轉(zhuǎn)化的表的表名,是一個字符串,如"example" 
var rows = document.getElementById(tableid).rows.length; //獲得行數(shù)(包括thead) 
var colums = document.getElementById(tableid).rows[0].cells.length; //獲得列數(shù) 
var json = "["; 
var tdValue; 
for (var i = 1; i < rows; i++) { //每行 
json += "{"; 
for (var j = 0; j < colums; j++) { 
tdName = keysArr[j]; //Json數(shù)據(jù)的鍵 
json += "\""; //加上一個雙引號 
json += tdName; 
json += "\""; 
json += ":"; 
tdValue = document.getElementById(tableid).rows[i].cells[j].innerHTML;//Json數(shù)據(jù)的值 
if (j === 1) {//第1列是日期格式,需要按照json要求做如下添加 
tdValue = "\/Date(" + tdValue + ")\/"; 
} 
json += "\""; 
json += tdValue; 
json += "\""; 
json += ","; 
} 
json = json.substring(0, json.length - 1); 
json += "}"; 
json += ","; 
} 
json = json.substring(0, json.length - 1); 
json += "]"; 
return json; 
} 
</script>

相信看了這些案例你已經(jīng)掌握了方法,更多精彩請關(guān)注php中文網(wǎng)其它相關(guān)文章!

相關(guān)閱讀:

html怎樣重定向連接

html與xhtml和xml有什么區(qū)別

以上就是html里table表數(shù)據(jù)如何轉(zhuǎn)為Json格式的詳細內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!


網(wǎng)站建設(shè)是一個廣義的術(shù)語,涵蓋了許多不同的技能和學科中所使用的生產(chǎn)和維護的網(wǎng)站。