簡體   English   中英

將ID從數據庫傳遞到打開的模式框中

[英]Pass the id from database to in open modal box

我需要做的是如何傳遞ID取決於要在模式框內打開的行的ID? 我需要在表格中進行修改。 我的桌子下面有我的php mysql記錄。 但是我該如何傳遞ID? 任何幫助將不勝感激!

  <table width="70%" border="0" cellpadding="0" cellspacing="0" class="table-list">
    <tr>
        <th width="40%">Item</th>
        <th width="20%">Category Code</th>
        <th width="20%">Item Code</th>
        <th width="20%">Edit</th>
        <th width="20%">Delete</th>
    </tr>
    <?php
    $res = $mysqli1->query("select * from code order by item_code ASC");
    while($r = $res->fetch_assoc()){
        echo "<tr>
                <td>".$r['item']."</td>
                <td>".$r['cat_code']."</td>
                <td>".$r['item_code']."</td>
                <td><a href='item_edit.php?id=".$r['id']."'</a></td>
                <td><a href='#' id='".$r['id']."' class='del'>Delete</a></td>
             </tr>";
    }
?>

<div class="entry-form">
 <form name="userinfo" id="userinfo">
     <table width="100%" border="0" cellpadding="4" cellspacing="0">
     <tr>
      <td colspan="2" align="right"><a href="#" id="close">Close</a></td>
     </tr>
     <tr>
     <td>Item</td>
     <td><input type="text" name="items" id="items" value="" class="inputs" autocomplete="off"></td>
     </tr>
 <div>

Java腳本

$(document).ready(function(){

       $("#add_new, #edit").click(function(){
           $(".entry-form").fadeIn("fast");
       });

       $("#close").click(function(){
           $(".entry-form").fadeOut("fast");
       });
   });

您可以嘗試以下想法:

<a href="#" id="someElement" data-id="idVal">從自定義屬性“ data-id”中獲取值</a>

在jQuery中

var someVariable = $(“#someElement”)。data(“ id”);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM