javascript中的html表

javascript中的html表

本文介绍了javascript中的html表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

如何在javascript中获取html表单元格值.

Hi All,

How to get html table cell value in javascript. and how to pass the html cell value in web service method.

推荐答案


var elTableRow = document.getElementById("tr1");
      var elTableCells = elTableRow.getElementsByTagName("td");
      alert(elTableCells[3].innerText);



但是返回的值是不确定的.你能告诉我wat是错误的.为什么那个值会这样返回.



but returned the value is undefined.can u tell me wat is error.why that value return like that.


这篇关于javascript中的html表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-22 21:43