1.1 html 部分,遍历出所有的checkbox项
@foreach($contact as $index=> $item) <div> <input type="checkbox" name="conMethod" class="check" value="{{$index}}"> <span>{{$item}}</span> </div> @endforeach
2.1 jQuery 部分,选择哪个获取哪个值
var contact = []; $(".check").click(function () { contact.splice(0, contact.length); $(".check").each(function () { if ($(this).get(0).checked == true) { contact.push($(this).val()); } }) })