Ich muss aufgrund bestimmter Anforderungen die folgende Abfrage in die Schleife einfügen
<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>
Denn um $rs['buy_id'] zu bekommen
Ich würde gerne fragen, wie ich an jedes $rs['buy_id'] komme, ohne es einzugeben while?
Ich muss aufgrund einiger Anforderungen die folgende Abfrage in die Schleife einfügen
<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>
Denn um $rs['buy_id'] zu bekommen
Ich würde gerne fragen, wie ich an jedes $rs['buy_id'] komme, ohne es einzugeben while?
<code>//对这些元素都加一个class 属性 class="get_total" $(function(){ $(".get_total").each(function(i){ var thatId= i.attr('id'); i.load('get_total?id='+thatId); }); });</code>