Example code for converting html table data to Json format

Example code for converting html table data to Json format
The javascript function for converting <table> table data to Json format is as follows

Copy code
The code is as follows:

<script>
var keysArr = new Array("key0", "key1", "key2");
function TableToJson(tableid) { //tableid is the name of the table you want to convert, a string, such as "example"
var rows = document.getElementById(tableid).rows.length; //Get the number of rows (including thead)
var colums = document.getElementById(tableid).rows[0].cells.length; //Get the number of columns
var json = "[";
var tdValue;
for (var i = 1; i < rows; i++) { //each row
json += "{";
for (var j = 0; j < colums; j++) {
tdName = keysArr[j]; //Key of Json data
json += "\""; //Add a double quote
json += tdName;
json += "\"";
json += ":";
tdValue = document.getElementById(tableid).rows[i].cells[j].innerHTML; //The value of the Json data
if (j === 1) {//The first column is in date format and needs to be added as follows according to JSON requirements
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>

<<:  Vue network request scheme native network request and js network request library

>>:  Recommended tips for web front-end engineers

Recommend

Detailed example of using typescript to encapsulate axios in Vue3

This axios package is used in the vue3 demo. For ...

How to obtain root permissions in a docker container

First, your container must be running You can vie...

In-depth explanation of MySQL isolation level and locking mechanism

Table of contents Brief description: 1. Four char...

JS implements layout conversion in animation

When writing animations with JS, layout conversio...

Specific use of Linux man command

01. Command Overview Linux provides a rich help m...

Brief analysis of the various versions of mysql.data.dll driver

Here is the mysql driver mysql.data.dll Notice: T...

How Web Designers Create Images for Retina Display Devices

Special statement: This article is translated bas...

Summary of Mysql update multi-table joint update method

Next, I will create two tables and execute a seri...

Solution to the same IP after cloning Ubuntu 18 virtual machine

Preface I recently used a virtual machine to inst...

Solution to forgetting the administrator password of mysql database

1. Enter the command mysqld --skip-grant-tables (...

Detailed process of modifying hostname after Docker creates a container

There is a medicine for regret in the world, as l...