編集ボタンをクリックした後、このフォームの ID を取得して印刷したいのですが、どうすればよいですか?データベースからの読み取りです。当然のことですが、各行には ID があるはずです。そのため、ID データはフォームからのものであるため、ID を編集ボタンに渡すだけで済みます。 DOM から取得するのではなく、データベースから読み取ります。 。
例:
$data = array( array('id' => 1, 'other_data'=>'xxxxxxx'),//Line 1 foreach($data as $row){
編集
}
えー、jqueryではできないのですか?
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script><script type="text/javascript">$(function(){ $(".edit").click(function(){ var id=$(this).closest("td").siblings("td:first").text(); alert(id); });});</script><table border="1"><tr><th>id</th><th>编辑</th></tr><tr><td>123</td><td><a href="javascript:void(0);" class="edit">编辑</a></td></tr><tr><td>234</td><td><a href="javascript:void(0);" class="edit">编辑</a></td></tr></table>
$a=query('select*from `table name`');
while($b=mysql_fetch_assoc($a)){
エコー /a>