Admin.js
资源名称:a.rar [点击查看]
上传用户:aa118c
上传日期:2021-05-13
资源大小:4785k
文件大小:17k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

HTML/CSS

  1. //改变管理位置标记--------------------------------------------------------------
  2. function changeAdminFlag(Content){
  3.    var row=parent.parent.headFrame.document.all.Trans.rows[0];
  4.    row.cells[3].innerHTML = Content ;
  5.    return true;
  6. }
  7. //删除各种分类节点--------------------------------------------------------------
  8. function ConfirmDelSort(Result,ID)
  9. //删除产品分类节点--------------------------------------------------------------
  10. {
  11.    if (confirm("是否确定删除本类、子类及下属所有信息?"))
  12.    {
  13.        window.location.href=Result+".asp?Action=Del&ID="+ID
  14.    }
  15. }
  16. //分类节点展开和折叠(备用)-------------------------------------------------------------
  17. function AddToSort(imagePath){
  18.   window.opener.LPform.LPattern.focus();
  19.   window.opener.document.LPform.LPattern.value=imagePath;
  20.   window.opener=null;
  21.   window.close();
  22. }
  23. //类别选择分类------------------------------------------------------------------------
  24. function OpenScript(url,width,height)
  25. {
  26.   var win = window.open(url,"SelectToSort",'width=' + width + ',height=' + height + ',resizable=no,scrollbars=yes,menubar=no,status=no,location=no' );
  27. }
  28. //分类节点展开和折叠-------------------------------------------------------------------
  29. function EndSortChange(a,b)
  30. {
  31. if(eval(a).style.display=='')
  32. {
  33. eval(a).style.display='none';
  34. eval(b).className='SortEndFolderOpen';
  35. }
  36. else
  37. {
  38. eval(a).style.display='';
  39. eval(b).className='SortEndFolderClose';
  40. }
  41. }
  42. function SortChange(a,b)
  43. {
  44. if(eval(a).style.display=='')
  45. {
  46. eval(a).style.display='none';
  47. eval(b).className='SortFolderOpen';
  48. }
  49. else
  50. {
  51. eval(a).style.display='';
  52. eval(b).className='SortFolderClose';
  53. }
  54. }
  55. //通用选择删除条目(反选-全选)--------------------------------------------------------
  56. function CheckOthers(form)
  57. {
  58.    for (var i=0;i<form.elements.length;i++)
  59.    {
  60.       var e = form.elements[i];
  61.       if (e.checked==false)
  62.       {
  63.      e.checked = true;
  64.       }
  65.       else
  66.       {
  67.      e.checked = false;
  68.       }
  69.    }
  70. }
  71. function CheckAll(form)
  72. {
  73.    for (var i=0;i<form.elements.length;i++)
  74.    {
  75.       var e = form.elements[i];
  76.       e.checked = true;
  77.    }
  78. }
  79. //相关条目删除提示------------------------------------------------------------
  80. function ConfirmDel(message)
  81. {
  82.    if (confirm(message))
  83.    {
  84.       document.formDel.submit()
  85.    }
  86. }
  87. //调用在线内容编辑器-----------------------------------------------------------
  88. function OpenDialog(sURL, iWidth, iHeight)
  89. {
  90.    var oDialog = window.open(sURL, "_EditorDialog", "width=" + iWidth.toString() + ",height=" + iHeight.toString() + ",resizable=no,left=0,top=0,scrollbars=no,status=no,titlebar=no,toolbar=no,menubar=no,location=no");
  91.    oDialog.focus();
  92. }
  93. //检验输入字符的有效性(0-9,a-z,-,_)-------------------------------------------
  94. function voidNum(argValue)
  95. {
  96.    var flag1=false;
  97.    var compStr="1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-";
  98.    var length2=argValue.length;
  99.    for (var iIndex=0;iIndex<length2;iIndex++)
  100.    {
  101.    var temp1=compStr.indexOf(argValue.charAt(iIndex));
  102.    if(temp1==-1)
  103.    {
  104.       flag1=false;
  105. break;
  106.    }
  107.    else
  108.    { flag1=true; }
  109.    }
  110.    return flag1;
  111. }
  112. //检查管理员登录------------------------------------------------------------------------------
  113. function CheckAdminLogin()
  114. {
  115.    var check;
  116.    if (!voidNum(document.AdminLogin.LoginName.value))
  117.    {
  118.   alert("请正确输入管理员名称(必须为0-9,a-z,-_组合)!");
  119.       document.AdminLogin.LoginName.focus();
  120.   return false;
  121.   exit;
  122.    }
  123.    if (!voidNum(document.AdminLogin.LoginPassword.value))
  124.    {
  125.   alert("请输入管理员密码!");
  126.   document.AdminLogin.LoginPassword.focus();
  127.   return false;
  128.   exit;
  129.    }
  130.    if (!voidNum(document.AdminLogin.CheckCode.value))
  131.    {
  132.       alert("请正确输入验证码!");
  133.       document.AdminLogin.CheckCode.focus();
  134.   return false;
  135.   exit;
  136.    }
  137.    return true;
  138. }
  139. //检查编辑管理员------------------------------------------------------------------------------
  140. function CheckAdminEdit()
  141. {
  142.    if (document.editForm.AdminName.value.length<3 || document.editForm.AdminName.value.length>10 )
  143.    {
  144.   alert("请正确输入登录名称(必须为0-9,a-z,-_组合)!");
  145.       document.editForm.AdminName.focus();
  146.   return false;
  147.   exit;
  148.    }
  149.    var check;
  150.    if (!voidNum(document.editForm.AdminName.value))
  151.    {
  152.   alert("请正确输入登录名称(必须为0-9,a-z,-_组合)!");
  153.       document.editForm.AdminName.focus();
  154.   return false;
  155.   exit;
  156.    }
  157. }
  158. //检查编辑会员--------------------------------------------------------------------------------
  159. function CheckMemEdit()
  160. {
  161.    if (document.editMemForm.MemName.value.length<3 || document.editMemForm.MemName.value.length>16 )
  162.    {
  163.   alert("请正确输入登录名称(必须为0-9,a-z,-_组合)!");
  164.       document.editMemForm.MemName.focus();
  165.   return false;
  166.   exit;
  167.    }
  168.    var check;
  169.    if (!voidNum(document.editMemForm.MemName.value))
  170.    {
  171.   alert("请正确输入登录名称(必须为0-9,a-z,-_组合)!");
  172.       document.editMemForm.MemName.focus();
  173.   return false;
  174.   exit;
  175.    }
  176. }
  177. //管理员退出登录提示--------------------------------------------------------------------------
  178. function AdminOut()
  179. {
  180.    if (confirm("您真的要退出管理操作吗?"))
  181.    location.replace("CheckAdmin.asp?AdminAction=Out")
  182. }
  183. //跳转到第几页-------------------------------------------------------------------------------
  184. function GoPage(Myself)
  185. {
  186.    window.location.href=Myself+"Page="+document.formDel.SkipPage.value;
  187. }
  188. //添加选择路径的ID,数字路径及生成文本路径--------------------------------------------------------
  189. function AddSort(SortNameCH,ID,Path)
  190. {
  191. window.opener.editForm.SortNameCH.focus();
  192. window.opener.document.editForm.SortNameCH.value=SortNameCH;
  193. window.opener.document.editForm.SortID.value=ID;
  194. window.opener.document.editForm.SortPath.value=Path;
  195.     window.opener=null;
  196.     window.close();
  197. }
  198. function getValue(obj,inputObj)
  199. {
  200.   var myObj=inputObj.nextSibling.nextSibling.childNodes[0].childNodes[0].cells[2].childNodes;
  201.   if(obj.innerHTML)
  202.     inputObj.value=myObj[0].innerHTML+"-"+myObj[2].innerHTML+"-"+obj.innerHTML;
  203.   inputObj.nextSibling.nextSibling.style.display='none';
  204.   for(i=0;i<obj.parentNode.parentNode.parentNode.cells.length;i++)
  205.     obj.parentNode.parentNode.parentNode.cells[i].className='';
  206.   obj.className='ds_border2'
  207. }
  208. //选择起始日期-----------------------------------------------------------------
  209. var DS_x,DS_y;
  210. function dateSelector()  //构造dateSelector对象,用来实现一个日历形式的日期输入框。
  211. {
  212.   var myDate=new Date();
  213.   this.year=myDate.getFullYear();  //定义year属性,年份,默认值为当前系统年份。
  214.   this.month=myDate.getMonth()+1;  //定义month属性,月份,默认值为当前系统月份。
  215.   this.date=myDate.getDate();  //定义date属性,日,默认值为当前系统的日。
  216.   this.inputName='';  //定义inputName属性,即输入框的name,默认值为空。注意:在同一页中出现多个日期输入框,不能有重复的name!
  217.   this.display=display;  //定义display方法,用来显示日期输入框。
  218. }
  219. function display()  //定义dateSelector的display方法,它将实现一个日历形式的日期选择框。
  220. {
  221.   var week=new Array('日','一','二','三','四','五','六');
  222.   document.write("<style type=text/css>");
  223.   document.write("  .ds_font td,span  { font: normal 12px 宋体; color: #000000; }");
  224.   document.write("  .ds_border  { border: 1px solid #000000; cursor: hand; background-color: #DDDDDD }");
  225.   document.write("  .ds_border2  { border: 1px solid #000000; cursor: hand; background-color: #DDDDDD }");
  226.   document.write("</style>");
  227.   document.write("<input style='width:72px;text-align:left;' class='textfield' id='DS_"+this.inputName+"' name='"+this.inputName+"' value='"+this.year+"-"+this.month+"-"+this.date+"' title=双击可进行编缉 ondblclick='this.readOnly=false;this.focus()' onblur='this.readOnly=true' readonly>");
  228.   document.write("<button style='width:60px;height:18px;font-size:12px;margin:1px;border:1px solid #A4B3C8;background-color:#DFE7EF;' type=button onclick=this.nextSibling.style.display='block' onfocus=this.blur()>选择日期</button>");
  229.   document.write("<div style='position:absolute;display:none;text-align:center;width:0px;height:0px;overflow:visible' onselectstart='return false;'>");
  230.   document.write("  <div style='position:absolute;left:-60px;top:20px;width:142px;height:165px;background-color:#F6F6F6;border:1px solid #245B7D;' class=ds_font>");
  231.   document.write("    <table cellpadding=0 cellspacing=1 width=140 height=20 bgcolor=#CEDAE7 onmousedown='DS_x=event.x-parentNode.style.pixelLeft;DS_y=event.y-parentNode.style.pixelTop;setCapture();' onmouseup='releaseCapture();' onmousemove='dsMove(this.parentNode)' style='cursor:move;'>");
  232.   document.write("      <tr align=center>");
  233.   document.write("        <td width=12% onmouseover=this.className='ds_border' onmouseout=this.className='' onclick=subYear(this) title='减小年份'>&lt;&lt;</td>");
  234.   document.write("        <td width=12% onmouseover=this.className='ds_border' onmouseout=this.className='' onclick=subMonth(this) title='减小月份'>&lt;</td>");
  235.   document.write("        <td width=52%><b>"+this.year+"</b><b>年</b><b>"+this.month+"</b><b>月</b></td>");
  236.   document.write("        <td width=12% onmouseover=this.className='ds_border' onmouseout=this.className='' onclick=addMonth(this) title='增加月份'>&gt;</td>");
  237.   document.write("        <td width=12% onmouseover=this.className='ds_border' onmouseout=this.className='' onclick=addYear(this) title='增加年份'>&gt;&gt;</td>");
  238.   document.write("      </tr>");
  239.   document.write("    </table>");
  240.   document.write("    <table cellpadding=0 cellspacing=0 width=140 height=20 onmousedown='DS_x=event.x-parentNode.style.pixelLeft;DS_y=event.y-parentNode.style.pixelTop;setCapture();' onmouseup='releaseCapture();' onmousemove='dsMove(this.parentNode)' style='cursor:move;'>");
  241.   document.write("      <tr align=center>");
  242.   for(i=0;i<7;i++)
  243. document.write("      <td>"+week[i]+"</td>");
  244.   document.write("      </tr>");
  245.   document.write("    </table>");
  246.   document.write("    <table cellpadding=0 cellspacing=2 width=140 bgcolor=#EEEEEE>");
  247.   for(i=0;i<6;i++)
  248.   {
  249.     document.write("    <tr align=center>");
  250. for(j=0;j<7;j++)
  251.       document.write("    <td width=10% height=16 onmouseover=if(this.innerText!=''&&this.className!='ds_border2')this.className='ds_border' onmouseout=if(this.className!='ds_border2')this.className='' onclick=getValue(this,document.all('DS_"+this.inputName+"'))></td>");
  252.     document.write("    </tr>");
  253.   }
  254.   document.write("    </table>");
  255.   document.write("    <span style=cursor:hand onclick=this.parentNode.parentNode.style.display='none'>【关闭】</span>");
  256.   document.write("  </div>");
  257.   document.write("</div>");
  258.   dateShow(document.all("DS_"+this.inputName).nextSibling.nextSibling.childNodes[0].childNodes[2],this.year,this.month)
  259. }
  260. function subYear(obj)  //减小年份
  261. {
  262.   var myObj=obj.parentNode.parentNode.parentNode.cells[2].childNodes;
  263.   myObj[0].innerHTML=eval(myObj[0].innerHTML)-1;
  264.   dateShow(obj.parentNode.parentNode.parentNode.nextSibling.nextSibling,eval(myObj[0].innerHTML),eval(myObj[2].innerHTML))
  265. }
  266. function addYear(obj)  //增加年份
  267. {
  268.   var myObj=obj.parentNode.parentNode.parentNode.cells[2].childNodes;
  269.   myObj[0].innerHTML=eval(myObj[0].innerHTML)+1;
  270.   dateShow(obj.parentNode.parentNode.parentNode.nextSibling.nextSibling,eval(myObj[0].innerHTML),eval(myObj[2].innerHTML))
  271. }
  272. function subMonth(obj)  //减小月份
  273. {
  274.   var myObj=obj.parentNode.parentNode.parentNode.cells[2].childNodes;
  275.   var month=eval(myObj[2].innerHTML)-1;
  276.   if(month==0)
  277.   {
  278.     month=12;
  279.     subYear(obj);
  280.   }
  281.   myObj[2].innerHTML=month;
  282.   dateShow(obj.parentNode.parentNode.parentNode.nextSibling.nextSibling,eval(myObj[0].innerHTML),eval(myObj[2].innerHTML))
  283. }
  284. function addMonth(obj)  //增加月份
  285. {
  286.   var myObj=obj.parentNode.parentNode.parentNode.cells[2].childNodes;
  287.   var month=eval(myObj[2].innerHTML)+1;
  288.   if(month==13)
  289.   {
  290.     month=1;
  291.     addYear(obj);
  292.   }
  293.   myObj[2].innerHTML=month;
  294.   dateShow(obj.parentNode.parentNode.parentNode.nextSibling.nextSibling,eval(myObj[0].innerHTML),eval(myObj[2].innerHTML))
  295. }
  296. function dateShow(obj,year,month)  //显示各月份的日
  297. {
  298.   var myDate=new Date(year,month-1,1);
  299.   var today=new Date();
  300.   var day=myDate.getDay();
  301.   var selectDate=obj.parentNode.parentNode.previousSibling.previousSibling.value.split('-');
  302.   var length;
  303.   switch(month)
  304.   {
  305.     case 1:
  306.     case 3:
  307.     case 5:
  308.     case 7:
  309.     case 8:
  310.     case 10:
  311.     case 12:
  312.       length=31;
  313.       break;
  314.     case 4:
  315.     case 6:
  316.     case 9:
  317.     case 11:
  318.       length=30;
  319.       break;
  320.     case 2:
  321.       if((year%4==0)&&(year%100!=0)||(year%400==0))
  322.         length=29;
  323.       else
  324.         length=28;
  325.   }
  326.   for(i=0;i<obj.cells.length;i++)
  327.   {
  328.     obj.cells[i].innerHTML='';
  329.     obj.cells[i].style.color='';
  330.     obj.cells[i].className='';
  331.   }
  332.   for(i=0;i<length;i++)
  333.   {
  334.     obj.cells[i+day].innerHTML=(i+1);
  335.     if(year==today.getFullYear()&&(month-1)==today.getMonth()&&(i+1)==today.getDate())
  336.       obj.cells[i+day].style.color='red';
  337.     if(year==eval(selectDate[0])&&month==eval(selectDate[1])&&(i+1)==eval(selectDate[2]))
  338.       obj.cells[i+day].className='ds_border2';
  339.   }
  340. }
  341. function getValue(obj,inputObj)  //把选择的日期传给输入框
  342. {
  343.   var myObj=inputObj.nextSibling.nextSibling.childNodes[0].childNodes[0].cells[2].childNodes;
  344.   if(obj.innerHTML)
  345.     inputObj.value=myObj[0].innerHTML+"-"+myObj[2].innerHTML+"-"+obj.innerHTML;
  346.   inputObj.nextSibling.nextSibling.style.display='none';
  347.   for(i=0;i<obj.parentNode.parentNode.parentNode.cells.length;i++)
  348.     obj.parentNode.parentNode.parentNode.cells[i].className='';
  349.   obj.className='ds_border2'
  350. }
  351. //实现层的拖移
  352. function dsMove(obj)
  353. {
  354.   if(event.button==1)
  355.   {
  356.     var X=obj.clientLeft;
  357.     var Y=obj.clientTop;
  358.     obj.style.pixelLeft=X+(event.x-DS_x);
  359.     obj.style.pixelTop=Y+(event.y-DS_y);
  360.   }
  361. }
  362. function test()
  363. {
  364.   if(!confirm('是否确定进行批量操作?操作后不能恢复!')) return false;
  365. }
  366. function num_1()
  367. {
  368. var num_1=document.getElementById("Num_1").value;
  369. var num_1_str=document.getElementById("num_1_str");
  370. var str;
  371. str="<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
  372. for(var i=0;i<num_1;i++)
  373. {
  374. str=str+"<tr><td height='28'>";
  375. str=str+"属性名称:<input name='attributeCh"+(parseInt(i)+1)+"' type='text' id='attributeCh"+(parseInt(i)+1)+"' size='18' /> 属性值:<input name='attributeCh"+(parseInt(i)+1)+"_value' type='text' id='attributeCh"+(parseInt(i)+1)+"_value' size='50' /></td>";
  376. str=str+"</tr>";
  377. }
  378. str=str+"</table>";
  379. num_1_str.innerHTML=str;
  380. }
  381. function num_1_1()
  382. {
  383. var num_1=document.getElementById("Num_1").value;
  384. var num_1_str=document.getElementById("num_1_str");
  385. var str;
  386. str="<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
  387. str=str+"<tr><td height='28'>";
  388. str=str+"属性名称:<input name='attributeCh"+(parseInt(num_1)+1)+"' type='text' id='attributeCh"+(parseInt(num_1)+1)+"' size='18' /> 属性值:<input name='attributeCh"+(parseInt(num_1)+1)+"_value' type='text' id='attributeCh"+(parseInt(num_1)+1)+"_value' size='50' /></td>";
  389. str=str+"</tr>";
  390. str=str+"</table>";
  391. num_1_str.innerHTML=num_1_str.innerHTML+str;
  392. document.getElementById("Num_1").value=(parseInt(num_1)+1);
  393. }
  394. function num_2()
  395. {
  396. var num_2=document.getElementById("num_2").value;
  397. var num_2_str=document.getElementById("num_2_str");
  398. var str;
  399. str="<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
  400. for(var i=0;i<num_2;i++)
  401. {
  402. str=str+"<tr><td height='28'>";
  403. str=str+"属性名称:<input name='attributeEn"+(parseInt(i)+1)+"' type='text' id='attributeEn"+(parseInt(i)+1)+"' size='18' /> 属性值:<input name='attributeEn"+(parseInt(i)+1)+"_value' type='text' id='attributeEn"+(parseInt(i)+1)+"_value' size='50' /></td>";
  404. str=str+"</tr>";
  405. }
  406. str=str+"</table>";
  407. num_2_str.innerHTML=str;
  408. }
  409. function num_2_1()
  410. {
  411. var num_2=document.getElementById("num_2").value;
  412. var num_2_str=document.getElementById("num_2_str");
  413. var str;
  414. str="<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
  415. str=str+"<tr><td height='28'>";
  416. str=str+"属性名称:<input name='attributeEn"+(parseInt(num_2)+1)+"' type='text' id='attributeEn"+(parseInt(num_2)+1)+"' size='18' /> 属性值:<input name='attributeEn"+(parseInt(num_2)+1)+"_value' type='text' id='attributeEn"+(parseInt(num_2)+1)+"_value' size='50' /></td>";
  417. str=str+"</tr>";
  418. str=str+"</table>";
  419. num_2_str.innerHTML=num_2_str.innerHTML+str;
  420. document.getElementById("num_2").value=(parseInt(num_2)+1);
  421. }
  422. function CopyWebTitleCH(v)
  423. {
  424.  document.editForm.SeoKeywordsCH.value=v;
  425.  document.editForm.SeoDescriptionCH.value=v;
  426. }
  427. function CopyWebTitleEN(v)
  428. {
  429.  document.editForm.SeoKeywordsEN.value=v;
  430.  document.editForm.SeoDescriptionEN.value=v;
  431. }