function choose(){ //爲點擊全選的框子添加時間
var qx = document.getElementById("qx"); //id選擇器
if(qx.checked){
$("input:checkbox").prop("checked","true"); //全選
}else{
$("input:checkbox").removeAttr("checked"); //取消全選
}數組
}this
//方法1spa
var salenos=[];rem
$("input[name='radio']:checked").each(function(){
salenos.push($(this).val()); //得到選中多選框的值放到數組中
//alert(salenos.length);
});get
//方法2input
var arr=[];
var arr2=$(":checked");
$.each(arr2,function () {
arr.push($(this).val());
});io
<input type="button" value="導出數據表格" style="" onclick="importOrderList($('input:checkbox:checked'))"/> //可用來判斷是否有選中的多選框function