var zbp = new ZBP({ bloghost: "http://www.szhdhm.com/", ajaxurl: "http://www.szhdhm.com/zb_system/cmd.php?act=ajax&src=", cookiepath: "/", comment: { useDefaultEvents: false, inputs: { } } }); var bloghost = zbp.options.bloghost; var cookiespath = zbp.options.cookiepath; var ajaxurl = zbp.options.ajaxurl; //********************************************************* // 目的: 全选 // 输入: 无 // 返回: 无 //********************************************************* function BatchSelectAll() { $("input[name='id[]']").click(); } //********************************************************* //********************************************************* // 目的: // 输入: 无 // 返回: 无 //********************************************************* function BatchDeleteAll(objEdit) { objEdit=document.getElementById(objEdit); objEdit.value=""; var aryChecks = document.getElementsByTagName("input"); for (var i = 0; i < aryChecks.length; i++){ if((aryChecks[i].type=="checkbox")&&(aryChecks[i].id.indexOf("edt")!==-1)){ if(aryChecks[i].checked){ objEdit.value=aryChecks[i].value+","+objEdit.value; } } } } //********************************************************* //********************************************************* // 目的: ActiveLeftMenu // 输入: 无 // 返回: 无 //********************************************************* function ActiveLeftMenu(name){ name="#"+name; $("#leftmenu li").removeClass("on"); $(name).parent().addClass("on"); var s=$(name).children("span").css("background-image"); if(s!==undefined){ s=s.replace("1.png","2.png"); $(name).children("span").css("background-image",s); } } //********************************************************* //********************************************************* // 目的: ActiveTopMenu // 输入: 无 // 返回: 无 //********************************************************* function ActiveTopMenu(name){ name="#"+name; $("#topmenu li").removeClass("on"); $(name).addClass("on"); } //********************************************************* //********************************************************* // 目的: 表格斑马线 // 输入: 无 // 返回: 无 //********************************************************* function bmx2table(){ $("table:not(.table_striped)").addClass("table_striped"); $("table:not(.table_hover)").addClass("table_hover"); }; //********************************************************* //********************************************************* // 目的: CheckBox // 输入: 无 // 返回: 无 //********************************************************* function ChangeCheckValue(obj){ $(obj).toggleClass('imgcheck-on'); if($(obj).hasClass('imgcheck-on')){ $(obj).prev('input').val('1'); $(obj).next('.off-hide').show(); }else{ $(obj).prev('input').val('0'); $(obj).next('.off-hide').hide(); } } //********************************************************* //********************************************************* // 目的: Notifications // 输入: 无 // 返回: 无 //********************************************************* function notify(s){ if (window.webkitNotifications) { if (window.webkitNotifications.checkPermission() == 0) { var zb_notifications = window.webkitNotifications.createNotification('http://www.szhdhm.com/zb_system/image/admin/logo-16.png', '通知', s); zb_notifications.show(); zb_notifications.onclick = function() {top.focus(),this.cancel();} zb_notifications.replaceId = 'Meteoric'; setTimeout(function(){zb_notifications.cancel()},5000); } else { window.webkitNotifications.requestPermission(notify); } } } //********************************************************* function statistic(s){ $("#statloading").show(); $("#updatatime").hide(); $.get(s+"&tm="+Math.random(),{}, function(data){ $("#tbStatistic tr:first ~ tr").remove(); $("#tbStatistic tr:first").after(data); //bmx2table(); $("#statloading").hide(); $("#updatatime").show(); } ); } function updateinfo(s){ $("#infoloading").show(); $.get(s+"&tm="+Math.random(),{}, function(data){ $("#tbUpdateInfo tr:first ~ tr").remove(); $("#tbUpdateInfo tr:first").after(data); $("#infoloading").hide(); } ); } function AddHeaderIcon(s){ $("div.divHeader,div.divHeader2").first().css({"background-image":"url('"+s+"')"}); } function AutoHideTips(){ if($("p.hint:visible").length>0){ $("p.hint:visible").delay(10000).hide(1500,function(){}); } } function ShowCSRFHint() { $('.main').prepend('
您在此页面已停留 %s 小时,可能需要刷新页面后才能正常使用各功能。