主頁 > 知識庫 > html table表數(shù)據(jù)轉(zhuǎn)Json格式示例代碼

html table表數(shù)據(jù)轉(zhuǎn)Json格式示例代碼

熱門標(biāo)簽:營口400電話申請 青海保險智能外呼系統(tǒng)商家 禹州電話外呼系統(tǒng) 最簡單的百度地圖標(biāo)注店鋪 AI外呼系統(tǒng) 價格 水經(jīng)注萬能地圖標(biāo)注 梧州地圖標(biāo)注app 新鄉(xiāng)機(jī)器人外呼系統(tǒng) 錦州企業(yè)外呼系統(tǒng)
<table>表數(shù)據(jù)轉(zhuǎn) Json 格式的javascript函數(shù)如下

復(fù)制代碼
代碼如下:

<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>

標(biāo)簽:昭通 荊門 哈密 懷化 潮州 山南 延邊 青島

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《html table表數(shù)據(jù)轉(zhuǎn)Json格式示例代碼》,本文關(guān)鍵詞  html,table,表,數(shù)據(jù),轉(zhuǎn),Json,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html table表數(shù)據(jù)轉(zhuǎn)Json格式示例代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于html table表數(shù)據(jù)轉(zhuǎn)Json格式示例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章