js获取GridView中行数据的两种方法
第一种方法:
function submitData() {
var tb = document.getElementById(IDArray[0]); //获取服务器控件GridView的ID
if (tb)
{
var rows = tb.rows;
for (var i = 1; i < rows.length; i++) {
var id = rows[i].cells[1].innerText;
var name = rows[i].cells[2].innerHTML;
var oDropDownList = rows[i].cells[3].childNodes[0];
var oText = oDropDownList.options[oDropDownList.selectedIndex].text; //获取GridView中下拉列表中选中的文本
var oValue = oDropDownList.options[oDropDownList.selectedIndex].value;; //获取GridView中下拉列表中选中的值
}
}
}
第二种方法:
function submitData() {
var tb = document.getElementById(IDArray[0]);
if (tb.hasChildNodes) {
if (tb.childNodes[0] != null) {
var rowCount = tb.childNodes[0].childNodes.length;
for (var i = 1; i < rowCount; i++) {
var child = tb.childNodes[0].childNodes[i];
var id = rowCount[i].cells[1].innerHTML;
var name = child.childNodes[1].innerHTML;
var oDropDownList = child.childNodes[2].childNodes[0];
var oText = oDropDownList.options[oDropDownList.selectedIndex].text;
var oValue = oDropDownList.options[oDropDownList.selectedIndex].value
}
}
}
摘自 邹琼俊的专栏
相关新闻>>
- JS获取农历日期
- js 中时间相减
- javascript获取document宽高
- 关于jQuery获取Action返回的JSON数据 项目真实案例 记录
- 如何用JavaScript获取标准下拉框的"选中值"和"选
- JavaScript获取和设置CheckBox状态
- JS,Jquery获取select,dropdownlist,checkbox 下拉列表框的值
- javascript获取COM或ATL返回的数组(整型或字符串数组)VBArray相
- 通过 JavaScript 获取和设置光标在输入框中的位置(兼容 IE 及 F
- 关于Jquery获取Table中td内的内容
- 发表评论
-
- 最新评论 更多>>