0

我有如下表视图 在此处输入图像描述

<table>
<tr><th>Username</th>
<th>Departemen</th><th>Created By</th><th>Created Date</th><th>Last Update By</th><th>Last Update Date</th><th>Aksi</th></tr>
<?php   
    $sql = "SELECT TOP 20 * FROM tblMstUser where CompanyDeptID ='11' or CompanyDeptID ='12' order by LoginID";
    $tampil = mssql_query($sql) ;
    while($r=mssql_fetch_array($tampil)){
      echo "<tr><td>$r[LoginID]</td>
                <td>$r[LoginName]</td>
                <td>$r[CreatedBy]</td>
                <td>$r[CreatedDate]</td>
                <td>$r[LastUpdatedBy]</td>
                <td>$r[LastUpdatedDate]</td>

                <td>
                     <button id='edit' onclick=\"popup_window_show('#sample', { pos : 'tag-right-down', parent : this});\"'><image src='images/Edit.png'/>Edit</button> | 
                     <button id='delete'><image src='images/delete.png'/>Hapus</button>
                </td>
                </tr>";
      $no++;
    }
    ?>
</table>

当用户单击“编辑”弹出窗口中的所有字段时,我的目的将由使用 LoginID 作为我的 sql 中的参数的相关数据填充。我使用 ms sql 2008 作为 mya 数据库服务器。我的问题是如何使用 Jquery 为每一行从数组“$r[LoginID]”中获取单个数据。

4

1 回答 1

0

与按钮 onClick 一起作为参数传递LoginID给函数,例如。

<button id='edit' onclick=\"popup_window_show('#sample', '$r[LoginID]' ,{ pos : 'tag-right-down', parent : this});\"'>

并使用 jQuery 对页面进行 ajax 调用,页面返回与 LoginID 相关的数据并在编辑表单中填写所有可编辑的文件。

于 2013-06-19T05:38:31.000 回答