|
@@ -1,90 +0,0 @@
|
|
|
-<!DOCTYPE html>
|
|
|
-<html lang="en">
|
|
|
-
|
|
|
-<head>
|
|
|
- <meta charset="UTF-8" />
|
|
|
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
- <title>User Data</title>
|
|
|
-</head>
|
|
|
-
|
|
|
-<body>
|
|
|
- <input type="file" id="file" />
|
|
|
- <button>Reading</button>
|
|
|
- <script>
|
|
|
- document.querySelector("button").addEventListener("click", function() {
|
|
|
- let file = document.getElementById("file").files[0];
|
|
|
- let reader = new FileReader();
|
|
|
- reader.readAsText(file);
|
|
|
- reader.onload = function() {
|
|
|
- // Конвертируем содержимое файла в массив строк
|
|
|
- const lines = reader.result.split("\n");
|
|
|
- // Создаем таблицу для отображения данных
|
|
|
- const table = document.createElement("table");
|
|
|
- table.setAttribute("border", "1");
|
|
|
- table.setAttribute("width", "100%");
|
|
|
- // Создаем заголовок таблицы
|
|
|
- const headerRow = table.insertRow();
|
|
|
- headerRow.insertCell().textContent = "Имя";
|
|
|
- headerRow.insertCell().textContent = "Телефон";
|
|
|
- headerRow.insertCell().textContent = "Дата";
|
|
|
- // Заполняем таблицу данными
|
|
|
- for (let i = 1; i < lines.length; i++) {
|
|
|
- const data = lines[i].split(",");
|
|
|
- const row = table.insertRow();
|
|
|
- row.insertCell().textContent = data[0];
|
|
|
- row.insertCell().textContent = data[1];
|
|
|
- row.insertCell().textContent = data[2];
|
|
|
- }
|
|
|
- // Добавляем таблицу на страницу
|
|
|
- document.body.appendChild(table);
|
|
|
- };
|
|
|
- reader.onerror = function() {
|
|
|
- console.log(reader.error);
|
|
|
- };
|
|
|
- });
|
|
|
- </script>
|
|
|
-</body>
|
|
|
-
|
|
|
-</html>
|
|
|
-<!--
|
|
|
-
|
|
|
-<div class="car-cards" id="car-cards-in-stock">
|
|
|
- <input type="file" id="file" />
|
|
|
- <button>Reading</button>
|
|
|
- <script>
|
|
|
- document.querySelector("button").addEventListener("click", function() {
|
|
|
- let file = document.getElementById("file").files[0];
|
|
|
- let reader = new FileReader();
|
|
|
- reader.readAsText(file);
|
|
|
- reader.onload = function() {
|
|
|
- const lines = reader.result.split("\n");
|
|
|
- const table = document.createElement("table");
|
|
|
- table.setAttribute("border", "1");
|
|
|
- table.setAttribute("width", "100%");
|
|
|
- // Создаем заголовок таблицы
|
|
|
- const headerRow = table.insertRow();
|
|
|
- const headers = lines[0].split(",");
|
|
|
- headers.forEach(header => {
|
|
|
- const th = document.createElement("th");
|
|
|
- th.textContent = header;
|
|
|
- headerRow.appendChild(th);
|
|
|
- });
|
|
|
- // Заполняем таблицу данными
|
|
|
- for (let i = 1; i < lines.length; i++) {
|
|
|
- const data = lines[i].split(",");
|
|
|
- const row = table.insertRow();
|
|
|
- data.forEach(cell => {
|
|
|
- const td = document.createElement("td");
|
|
|
- td.textContent = cell;
|
|
|
- row.appendChild(td);
|
|
|
- });
|
|
|
- }
|
|
|
- // Добавляем таблицу на страницу
|
|
|
- document.body.appendChild(table);
|
|
|
- };
|
|
|
- reader.onerror = function() {
|
|
|
- console.log(reader.error);
|
|
|
- };
|
|
|
- });
|
|
|
- </script>
|
|
|
-</div> -->
|