首页 > 代码库 > checkbox 赋值给js 变量

checkbox 赋值给js 变量

var banuid =[];//定义一个数组
            $(‘input[name="banuid[]"]:checked‘).each(function(){//遍历每一个名字为interest的复选框,其中选中的执行函数
                banuid.push($(this).val());//将选中的值添加到数组chk_value中
            });

checkbox 赋值给js 变量