我因為某些需求
需要將以下jquery放到循環中
<code>$(document).ready(function(){ get_total<? echo $rs['buy_id'];?>(); }); function get_total<? echo $rs['buy_id'];?>(){ $("#data_total<? echo $rs['buy_id'];?>").load("get_total?id=<? echo $rs['buy_id'];?>"); } </code>
因為為了取得 $rs['buy_id']
想請問如何讓它不需要放在while也能取得每個 $rs['buy_id'] 的方法?
我因為某些需求
需要將以下jquery放到循環中
<code>$(document).ready(function(){ get_total<? echo $rs['buy_id'];?>(); }); function get_total<? echo $rs['buy_id'];?>(){ $("#data_total<? echo $rs['buy_id'];?>").load("get_total?id=<? echo $rs['buy_id'];?>"); } </code>
因為為了取得 $rs['buy_id']
想請問如何讓它不需要放在while也能取得每個 $rs['buy_id'] 的方法?
<code>//对这些元素都加一个class 属性 class="get_total" $(function(){ $(".get_total").each(function(i){ var thatId= i.attr('id'); i.load('get_total?id='+thatId); }); });</code>