1

我正在尝试通过使用 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>

这是应该如何显示的对话框的示例

在此处输入图像描述

非常感谢你们。如果需要,我可以为你们提供代码。

4

1 回答 1

1

使用 .btn 类到您的 tr 并将您的用户名值附在

<span class="username">${it.username}</span>

你的jQuery应该

$(document).ready(function() {
  $(".btn tr").live("click", function{
    var name = $(this).find(".username").text();
    ...put your code here that will update your table...
  });
});

如果您单击 tr,它将找到其具有“用户名”类的子项,并为您获取数据。

于 2013-01-29T02:30:05.593 回答