博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
How do I get data from a data table in javascript?
阅读量:6322 次
发布时间:2019-06-22

本文共 1241 字,大约阅读时间需要 4 分钟。

This is how I accomplished reading a table in javascript. Basically I drilled down into the rows and then I was able to drill down into the individual cells for each row. This should give you an idea

var oTable = document.getElementById('myTable');

//gets table

var rowLength = oTable.rows.length;

//gets rows of table

for (i = 0; i < rowLength; i++){

//loops through rows

var oCells = oTable.rows.item(i).cells;

//gets cells of current row
var cellLength = oCells.length;
for(var j = 0; j < cellLength; j++){
//loops through each cell in current row
<!--get your cell info here-->
<!--var cellVal = oCells.item(j).innerHTML;-->
}
}
UPDATED - TESTED SCRIPT

<table id="myTable">

<tr>
<td>A1</td>
<td>A2</td>
<td>A3</td>
</tr>
<tr>
<td>B1</td>
<td>B2</td>
<td>B3</td>
</tr>
</table>
<script>
var oTable = document.getElementById('myTable');
//gets table

var rowLength = oTable.rows.length;

//gets rows of table

for (i = 0; i < rowLength; i++){

//loops through rows

var oCells = oTable.rows.item(i).cells;

//gets cells of current row
var cellLength = oCells.length;
for(var j = 0; j < cellLength; j++){
//loops through each cell in current row
<!--get your cell info here-->
var cellVal = oCells.item(j).innerHTML;
alert(cellVal);
}
}
</script>

转载地址:http://kjcaa.baihongyu.com/

你可能感兴趣的文章
非唯一列上的非聚集索引
查看>>
Google glog 使用
查看>>
React与ES6(四)ES6如何处理React mixins
查看>>
MySQL5.6忘记root密码(win平台)
查看>>
信鬼神 信风水 信命运 皆因无力及妄念所致
查看>>
【开源】知乎日报UWP 更新
查看>>
浅谈C# 中的lock 方法与Monitor 类的关系_以及同步与互斥
查看>>
仿Google首页搜索自动补全!(原创分享jQuery版)
查看>>
tkinter的GUI设计:界面与逻辑分离(三)-- 多页面
查看>>
CHM 打开时提示 已取消到该网页的导航
查看>>
软件(代码)开源,协议声明
查看>>
java web开发人员经常使用标签
查看>>
修改linux的最大文件句柄数限制
查看>>
基于zepto的移动端日期+时间选择插件
查看>>
JDK5.0新特性系列---11.1线程 Callable和Future
查看>>
QTP的那些事--VBS函数大全
查看>>
爆牙齿的世界杯日记(小组次轮)
查看>>
09.移动先行之谁主沉浮----控件之轮流轰炸——高级控件
查看>>
Hibernate 缓存机制浅析
查看>>
Hadoop Hive概念学习系列之hive里的桶(十一)
查看>>