这是我的脚本代码:
all_price=$('.result'+ s).text();
现在我想将Var S与FOR循环
中的其他人连接起来例如:
<?php
$a=1;
foreach ($this->cart->contents() as $cart_item){?>
<li>
<ul class="Sub-Cart">
<li><a href=""><img src="<?php echo base_url()?>upload/<?php echo $cart_item['options']['Image'];?>"/></a></li>
<li><a href=""><?php echo $cart_item['name'];?></a> <a href="<?php echo base_url()?>admin_customer/customer_del_cart/<?php echo $cart_item['rowid'];?>"><i class="fa fa-trash-o" title="Xóa"></i></a></li>
<input type="hidden" name='' id='rowid' value='<?=$item['rowid']?>'>
<li id="price<?php echo $a;?>"><?php echo $cart_item['price'];?></li>
<li><input type="submit" name="submit" value="-" id="subtr<?php echo $a;?> " class="subtr" title="Giảm"/>
<input type="text" name="text" value="<?php echo $cart_item['qty'];?>" style="width:50px;" id="pro_qty<?php echo $a;?>"/>
<input type="submit" name="submit" value="+" id="add<?php echo $a;?>" class="add" title="Tăng"/>
</li>
<li class="result<?php echo $a;?>"><?php echo $cart_item['subtotal'];?></li/>
</ul>
</li>
<?php $a++;}?>
和我的foreach代码在view.php
中pynder
我想要的结果就像那样:
但我不能那样跑=。=
任何人都可以帮助我吗?
抱歉我的英文不好
提前致谢
答案 0 :(得分:0)
你需要在引号之外进行连接:
all_price = $('.result'+s).text();