I have a table in my MVC application.I want to get the id of the selected row.I captured the click event of tr using jQuery. The table sample is shown below
<table id="resultTable">
<tr id="first">
<td>c1</td>
<td>c2</td>
</tr>
<tr id="second">
<td>c3</td>
<td>c4</td>
</tr>
</table>
I am using following script to access row click event
$(document).ready(function () {
$('#resultTable tr').click(function (event) {
alert(this.); //trying to alert id of the clicked row
});
});
But its not working.How can get selected row id .??Any ideas??
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…