$('#selectAll').on('change', function() {
$('.chk:checkbox').prop('checked', $(this).is(":checked"));
});
function sendMsg(){
// alert(statuss);
var yourArray = $(".chk:checked").map(function(){return $(this).val()}).get();
alert(yourArray);
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="checkbox" class="chk" value="1">
<input type="checkbox" class="chk" value="2">
<input type="checkbox" class="chk" value="3">
<input type="checkbox" id="selectAll">
<button onclick="sendMsg()">Click</button>
我想在sendMsg函数的主体中调用我的引导程序模式,并在该模式中传递yourArray,以便我可以使用yourArray的值,并且希望在PHP代码中使用yourArray的值