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
This axios package is used in the vue3 demo. For ...
First, your container must be running You can vie...
Operating system: Ubuntu 17.04 64-bit MySQL versi...
Table of contents Brief description: 1. Four char...
If you want to solve the slow problem once and fo...
When writing animations with JS, layout conversio...
01. Command Overview Linux provides a rich help m...
Here is the mysql driver mysql.data.dll Notice: T...
Special statement: This article is translated bas...
first step: In VMware, click "Edit" - &...
Next, I will create two tables and execute a seri...
When a user registers, they will click on a label...
Preface I recently used a virtual machine to inst...
1. Enter the command mysqld --skip-grant-tables (...
There is a medicine for regret in the world, as l...