概述
这些东西的选取首先就要找出选择的是第几行,如下:
var table = document.getElementById("<%=GridView1.ClientID %>");
var rowIndex = 0 ;
for(var i=1;i<table.rows.length;i++)
{
var input = table.rows[i].cells[0].getElementsByTagName("input")[0].checked;
if (input == true)
{
rowIndex = i;
return rowIndex ;
}
}
取到TextBox中的值
table.rows[rowIndex].cells[3].getElementsByTagName("input")[0].value
取到Lable中的值
table.rows[rowIndex].cells[4].getElementsByTagName("span")[0].innerHTML
后面的.innerHTML可以换成.innerText,不过.innerHTML的浏览器兼容性好些。
(这里要注意了:不管是用.innerHTML还是.innerText都是只把信息显示<span>XXXX</span>之间,而不是像TextBox的标签显示在<input Value="XXXX"></input>中。缺点是:页面一刷新就没有了。)
最后
以上就是害羞蛋挞为你收集整理的JavaScript获取GridView选择的行内容的全部内容,希望文章能够帮你解决JavaScript获取GridView选择的行内容所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复