jq查找和拼接checkbox的值

var product_name = '';
		$("input[name='product']:checkbox").each(function () {
			if ($(this).is(":checked")) {
				product_name += $(this).attr('value') + ',';
			}
		});
		product_name = product_name.substring(0,product_name.length-1)
		if(product_name != ''){
			$(".products").val(product_name);
		}
posted @ 2020-03-06 08:53  大雨大雨大雨  阅读(175)  评论(0编辑  收藏  举报