我是编程新手,目前正在学习 JQuery。我有一个问题,如果我在列属性中有一个按钮,并且当我单击该属性的单元格中的按钮时,我想查找该单元格的唯一 ID 的值是什么,即,如果我的属性名称被批准值 我通过按钮单击在是和否之间切换,我想在 JQuery 中获取唯一 ID 的值,比如名称属性,以便我可以使用 AJAX 调用更新批准的值。
<table>
<th>S.no</th>
<th>Name</th>
<th>Submitted by</th>
<th>Approved</th>
<tr>
<td>1.</td>
<td>XYZ</td>
<td>21-3-04</td>
<td>NO <input type = "button" onclick = "toggle()" value = "click"/></td></tr>
.
.
.
</table>
<script>
function toggle(){
//I want to fetch the value of the Name attribute for the row in which my button was clicked. and later I want to call an ajax call to a url that will consist of Update query.
}
</script>