我有這張表,它的最右邊一列有一個按鈕,我希望當我點擊那個按鈕時,p標籤將會改變根據該行的值,其中按鈕是現在這裏是我的表看起來像獲取單個html表格行的值onclick使用javascript行內的按鈕
和我的代碼
<table class="table table-striped table-hover" id="detailTable">
<thead>
<tr>
<th>Record ID</th>
<th>School Year</th>
<th>School Quarter</th>
<th>Student Name</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>123</td>
<td>SY 2013-2014</td>
<td>2nd Quarter</td>
<td>Billy Joel</td>
<td><button class="btn" onclick="tgPanel();">Edit</button></td>
</tr>
//more rows here
</tbody>
這裏是我的javascript代碼
function tgPanel()
{
document.getElementById("rid").innerHTML = document.getElementById("detailTable").rows[0].cells[1].getVal;
document.getElementById("sy").innerHTML = document.getElementById("detailTable").rows[0].cells[2].getVal;
..and so on..
}
P標籤是什麼?他們在哪?你可以請張貼所有相關的HTML – Adjit