https://help.fanruan.com/finereport/doc-view-1215.html这个JS实现复选按钮控件全选和批量操作中setTimeout(function() { var isAllChecked = true; //设置标记状态为选中 var boxes = _g().getWidgetsByName("box"); //获取当前页的复选按钮控件数组 if (typeof(boxes) != "undefined") { for (i = 0; i < boxes.length; i++) { isAllChecked = boxes.getValue() == true ? isAllChecked : false; //如果控件大于1个,则遍历获取值,一旦出现未选中状态的按钮,则将标记值改为false } } else { isAllChecked = boxes.getValue(); //如果控件只有1个,则直接获取控件值,并传给标记值 } _g().setCellValue(0, 0, 1, isAllChecked); //将标记值赋给A2单元格}, 50这段JS中_g().setCellValue(0, 0, 1, isAllChecked);是什么意思?我要是把值赋给AM2单元格怎么设置