您好,欢迎来到源码搜藏!分享精神,快乐你我!提示:担心找不到本站?在百度搜索“源码搜藏”,网址永远不丢失!
  • 首 页
  • 在线工具
  • 当前位置:首页 > 网页特效 > jQuery特效 >

    jQuery添加购物车复选框增加数量更新价格等功能

    时间:2014-05-13 13:20 来源:互联网 作者:源码搜藏 浏览:收藏 挑错 推荐 打印

    效果预览 进入下载地址列表
    jQuery添加购物车复选框jQuery添加购物车复选框是一款基于jquery制作的复选框全选反选取消,购物车,统计价格,统计,类似淘宝的购物车,非常不错的。
    jQuery购物车全选复选框

    //jquery特效制作复选框全选反选取消(无插件)
    // 全选        
    $(".allselect").click(function () {
    $(".gwc_tb2 input[name=newslist]").each(function () {
    $(this).attr("checked", true);
    // $(this).next().css({ "background-color": "#3366cc", "color": "#ffffff" });
    });
    GetCount();
    });
     
    //反选
    $("#invert").click(function () {
    $(".gwc_tb2 input[name=newslist]").each(function () {
    if ($(this).attr("checked")) {
    $(this).attr("checked", false);
    //$(this).next().css({ "background-color": "#ffffff", "color": "#000000" });
    } else {
    $(this).attr("checked", true);
    //$(this).next().css({ "background-color": "#3366cc", "color": "#000000" });
    });
    GetCount();
    });
     
    //取消
    $("#cancel").click(function () {
    $(".gwc_tb2 input[name=newslist]").each(function () {
    $(this).attr("checked", false);
    // $(this).next().css({ "background-color": "#ffffff", "color": "#000000" });
    });
    GetCount();
    });
     
    // 所有复选(:checkbox)框点击事件
    $(".gwc_tb2 input[name=newslist]").click(function () {
    if ($(this).attr("checked")) {
    //$(this).next().css({ "background-color": "#3366cc", "color": "#ffffff" });
    } else {
    // $(this).next().css({ "background-color": "#ffffff", "color": "#000000" });
    }
    });
     
    // 输出
    $(".gwc_tb2 input[name=newslist]").click(function () {
    // $("#total2").html() = GetCount($(this));
    GetCount();
    //alert(conts);
    });
    jQuery添加购物车复选框增加数量更新价格等功能由源码搜藏网整理,转载请注明出处http://www.codesocang.com/texiao/jQuerytexiao/7672.html 源码搜藏承诺:本站所有资源无病毒,无弹窗,无干扰链接!