JavaScript擷取GridView選擇的行內容

來源:互聯網
上載者:User

這些東西的選取首先就要找出選擇的是第幾行,如下:
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>中。缺點是:頁面一重新整理就沒有了。)
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.