Initial commit

This commit is contained in:
易焱
2021-04-18 18:51:51 +08:00
commit ec705f2fa8
3240 changed files with 623103 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<script>
$(function(){
$(".thischeck_all").click(function(){
var y=$(this).attr("val");
var objname=$(this).attr("objname");
if(y==0){
$.uniform.update($("."+objname).prop("checked", false));
y=1;
}else if(y==1){
$.uniform.update($("."+objname).prop("checked", true));
y=0;
}
$(this).attr("val",y);
})
})
//排序
function update_order(obj,inputname){
$("input[name='"+inputname+"']").val($(obj).val());
}
</script>