Main.js
上传用户:szraylite
上传日期:2018-06-06
资源大小:11546k
文件大小:3k
源码类别:

软件测试

开发平台:

Java

  1. var _path = "/TabDemo/"; //如果网站不在根目录下 而是在虚拟目录下 请在这里写下虚拟目录的名称。 var _skinId = getCookie("_skinId") ? getCookie("_skinId"):"1"; function loadSkin(skinId) {     writeCookie("_skinId",skinId);     top.window.location.reload(); }
  2. function $(id)
  3. {
  4.     return document.getElementById(id);
  5. }
  6. function loadCss(skinId,cssName)
  7. {
  8.     var head = document.getElementsByTagName('head').item(0);
  9.     css = document.createElement('link');
  10.     css.href = "Skin/Skin" + skinId + "/"+cssName;
  11.     css.rel = 'stylesheet';
  12.     css.type = 'text/css';
  13.     css.id = 'loadCss';
  14.     head.appendChild(css);
  15. } function loadJs(file)
  16. {
  17.     var scriptTag = document.getElementById('loadScript');
  18.     var head = document.getElementsByTagName('head').item(0);
  19.     if(scriptTag) head.removeChild(scriptTag);
  20.     script = document.createElement('script');
  21.     script.src = "../js/mi_"+file+".js";
  22.     script.type = 'text/javascript';
  23.     script.id = 'loadScript';
  24.     head.appendChild(script);
  25. } function setCookie(sKey, sValue, sDomain, sPath, sExpires, blSecure)
  26. {
  27. var sCookieStr = sKey + "=" + sValue + ";";
  28. if (sDomain) sCookieStr += " DOMAIN=" + sDomain + ";";
  29. if (sPath) sCookieStr += " PATH=" + sPath + ";";
  30. if (sExpires) sCookieStr += " EXPIRES=" + sExpires + ";";
  31. if (blSecure) sCookieStr += " SECURE";
  32. document.cookie = sCookieStr;
  33. }
  34. function writeCookie(key,value)
  35. {
  36.     var sExpires=new Date();
  37.     sExpires.setTime(sExpires.getTime()+24*60*60*1000*365);
  38.     setCookie(key,value,"","",sExpires.toGMTString(),""); 
  39.     if(getCookie(key) == null)
  40.     {
  41.         alert("您的浏览器安全设置过高,不支持Cookie,请重新设置浏览器的。");
  42.     }
  43. }
  44. function getCookie(sKey)
  45. {
  46. var sCookie = document.cookie;
  47. if( !sCookie ) return null;
  48. var sTag = sKey + "=";
  49. var iBegin = sCookie.indexOf(sTag);
  50. if (iBegin < 0) return null;
  51. iBegin += sTag.length;
  52. var iEnd = sCookie.indexOf(";", iBegin);
  53. if (iEnd < 0) iEnd = sCookie.length;
  54. return sCookie.substring(iBegin, iEnd);
  55. }
  56. function delCookie(sKey) 
  57. {
  58. var tNow = new Date();
  59. setCookie(sKey, "", null, null, tNow.toGMTString(), null);
  60. }
  61. function fullOpen(url)
  62. {
  63.     HeightValue=screen.height;
  64.     WidthValue=screen.width;
  65.     newwin=window.open(url,"","toolbar=0,location=0,directories=0,status=1,menubar=0,resizable=1,left=0,top=0,scrollbars=yes")
  66.     if(newwin == null)
  67.     {
  68.         alert("系统提示: 您的浏览器阻止了一个弹出窗口");
  69.         return;
  70.     }
  71.     newwin.moveTo(-3,-3);
  72.     newwin.resizeTo(WidthValue+6,HeightValue-23);
  73. } function ShowDiv(id)
  74. {
  75.     $(id).style.visibility = "visible";
  76. }
  77. function HiddenDiv(id)
  78. {
  79.     $(id).style.visibility = "hidden";
  80. }