我正在尝试通过使用 Jquery 模式对话框将值传递给控制器来执行 UPDATE 功能。但是,我在 HTML 表格框中显示我的值,有没有办法将表格行中的值传递到模式框?当我单击该行时,我想以某种方式执行此操作,值将显示在模态中。我也不确定如何将 jquery 对话框链接到表行。
这是桌子
这些是它的代码
<form id="searchtable" >
<%--List Table--%>
<table border = 1 cellpadding = 2 cellspacing = 2 id="normal">
<tr>
<th width=9.7%>ID</th>
<th width=24%>Username</th>
<th width=13%>Account ID</th>
<th width=29%>Email</th>
<th width=10%>User ID</th>
<th width=12%>Device ID</th>
</tr>
</table>
<div style="height: 250px; overflow: scroll; width: 100%;">
<table id="normal">
<g:each in = "${result}">
<tr>
<td width=10%>${it.ID}</td>
<td width=25%>${it.Username}</td>
<td width=13.5%>${it.account_id}</td>
<td width=30.5%>${it.email}</td>
<td width=10.5%>${it.user_id}</td>
<td width=13%>${it.device_id }</td>
</tr>
</g:each>
</table>
</div>
</form>
这是应该如何显示的对话框的示例
非常感谢你们。如果需要,我可以为你们提供代码。