通过这个js删除页面内复选框中的全选按钮,但是页面只多个复选框只会有一个生效以下js用的编辑前事件 setTimeout(function(){ // 判断是否已经删掉了全选,如果已经删除则不需要再操作 if($(".report-main-parameter-container-controller-tag-combo-checkbox .bi-v-tape").children().length==3){ // 删除全选按钮 $(".report-main-parameter-container-controller-tag-combo-checkbox .bi-v-tape div:eq(0)").remove(); // 将全选下面的选项整体提到最上面 $(".report-main-parameter-container-controller-tag-combo-checkbox .bi-v-tape div:eq(0)").css("inset","1px 1px"); } },100) |