2013-06-19 53 views
0

我有一個像下面 enter image description here獲得來自多個數據單數據與jQuery

表視圖
<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> 

我時,在彈出的用戶點擊「編輯」的所有領域都將通過使用登錄ID作爲參數相關的數據填充目的我SQL。我使用ms sql 2008作爲mya數據庫服務器。 我的問題如何我可以從數組「$ r [LoginID]」使用Jquery每行獲取單個數據。

回答

0

通過LoginID作爲參數與按鈕onClick,例如。

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

和消防Ajax調用使用jQuery的頁面,以及與登錄ID的頁面返回的數據填寫編輯表單中的所有編輯的Fileds。