联系官方销售客服

1835022288

028-61286886

POSCMS 版主:POSCMS负责人
购物中商品数量怎么直接输出不要弹窗
类型:POSCMS 更新时间:2018-11-06 21:20:44

image.png


购物中商品数量怎么直接输出不要弹窗

回帖
  • 大江
    #1楼    大江
    2018-10-28 13:22:59
    0
    改alert,需要会jQuery
  • 朱稀
    #2楼    朱稀
    2018-10-28 13:56:27
    0
    不会jQuery啊
  • 大江
    #3楼    大江
    2018-10-28 14:02:40
    0
    不会jquyey就困难了,你这个代码是jQuery的,需要改造
  • 朱稀
    #4楼    朱稀
    2018-10-28 14:34:39
    0
    这个代码是官方提供的
  • 独白
    #5楼    独白
    2018-10-28 15:25:24
    0
    代码是没有问题,可以输出商品数量,改下显示方式就行
  • 一盘散沙
    #6楼    一盘散沙
    2018-11-06 17:16:56
    0
    改alert
  • 乐发发
    #7楼    乐发发
    2018-11-06 21:20:27
    0
    1新建模板文件order/cart_ajax.html
    {if $order_list}
    {$order_total.num}
    {else}
    0
    {/if}

    2、通用标签查询购物车数据(写在任意的页面上都行)

     <div id="dr_gouwuche">
                           
    </div>
     
     <script type="text/javascript">
    	    $.ajax({type: "GET", url: "/index.php?s=order&c=cart&m=ajax&"+Math.random(), dataType:"jsonp",
                success: function (data) {
                    $("#dr_gouwuche").html(data.html);
                },error: function(HttpRequest, ajaxOptions, thrownError) {
                alert("模板不存在:order/cart_ajax.html");
                }});
    	</script>
    满意答案
  • 朱稀
    #8楼    朱稀
    2018-11-06 21:20:44
    0
    找到了方法