在 JavaScript 中将 HTML 表转换为数组?
javascriptweb developmentobject oriented programming
使用 find() 从标签获取数据,并使用 push() 将数据存储到数组中。假设以下是我们的表 −
<table id="details"> <thead> <tr> <th>Name</th> <th>Age</th> </tr> </thead> <tbody> <tr><td>John</td><td>23</td> <tr><td>David</td><td>26</td> </tbody> </table>
让我们从 <td> 获取数据并存储在数组中。以下是完整代码 −
示例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <style> .notShown { display: none; } </style> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> </head> <body> <table id="details"> <thead> <tr> <th>Name</th> <th>Age</th> </tr> </thead> <tbody> <tr><td>John</td><td>23</td> <tr><td>David</td><td>26</td> </tbody> </table> <script> var convertedIntoArray = []; $("table#details tr").each(function() { var rowDataArray = []; var actualData = $(this).find('td'); if (actualData.length > 0) { actualData.each(function() { rowDataArray.push($(this).text()); }); convertedIntoArray.push(rowDataArray); } }); console.log(convertedIntoArray); </script> </body> </html>
要运行上述程序,请保存文件名"anyName.html(index.html)",然后右键单击该文件。在 VS Code 编辑器中选择选项"使用 Live Server 打开"。
输出
这将产生以下输出 −