摘要: // 通过选择器获取所有选中的复选框 var selectedValues = $('input[name="xxx"]:checked').map(function(){ return this.value; }).get(); // 返回一个包含所有选中复选框的值的数组 console.log( 阅读全文
posted @ 2024-07-22 16:34 花田007 阅读(12) 评论(0) 推荐(0) 编辑