单击另一个图像按钮(在表格单元格 2 中)时,我需要找到图像按钮的 ID(在表格单元格 1 中)。
我无法在我的 javascript/jquery 中对任何索引进行硬编码。
有没有其他方法可以获取表格特定行中第二个按钮的 id?
请帮忙
代码示例
<tr class="home-history-grid-row">
<td>
<img id="test" height="16px" width="16px" onclick="changeImage(this)" src="SiteImages/deleteconfirm.png" title="Confirm Delete" alt="Delete">
</td>
<td>
<input id="ctl00_Content_NotificationHistory_ctl02_ImgDelete" type="image" style="height: 16px; width: 16px; border-width: 0px;" src="SiteImages/X.gif" clientidmode="Static" disabled="disabled" name="ctl00$Content$NotificationHistory$ctl02$ImgDelete">
</td>
</tr>