Function.js
上传用户:prospercnc
上传日期:2019-12-08
资源大小:1314k
文件大小:7k
源码类别:

弱点检测代码

开发平台:

ASP/ASPX

  1. //==========================================
  2. //系统开发:方卡在线
  3. //技术支持:http://www.fangka.net/
  4. //==========================================
  5. //==========================================
  6. //函数名:ShowBox
  7. //用途:操作框弹出
  8. //参数:
  9. //==========================================
  10. function ShowBox(DoUrl){
  11. $("#AlphaBox").height($(document).height());
  12. document.getElementById('BoxContent').innerHTML="<div id='LoadBox'><a href='javascript:void(0);' title='点此关闭' onclick=$('select').show();$('#Boxs').hide()><img src='Images/Loading2.gif' /></a></div>";
  13. $("#Boxs").show();
  14. $.get(DoUrl,
  15. function(data){
  16. document.getElementById('BoxContent').innerHTML=data;
  17. return true;
  18. }
  19. );
  20. $('select').hide();
  21. }
  22. function Type1(){
  23. $(".Type1").css("display","block");
  24. $(".Type2").css("display","none");
  25. }
  26. function Type2(){
  27. $(".Type1").css("display","none");
  28. $(".Type2").css("display","block");
  29. }
  30. document.onkeydown=function(){ 
  31. if(window.event.keyCode==27){ 
  32. $("#Boxs").hide();
  33. $('select').show();
  34. function CheckAll(form) {
  35. for (var i = 0; i < form.elements.length; i++) {
  36. var e = form.elements[i];
  37. if (e.name != 'chkall') 
  38. e.checked = form.chkall.checked;
  39. }
  40. }
  41. //==========================================
  42. //函数名:PageReSize
  43. //用途:页面初始化
  44. //参数:
  45. //==========================================
  46. function PageReSize(){
  47. var LeftWidth=189;
  48. var RightWidth=$("#Bodys").width()-189;
  49. var WindowsHeight=$(document).height()-90;
  50. var LeftHeight=$("#MainLeft").height();
  51. var RightHeight=$("#MainRight").height();
  52. if(RightWidth>812){
  53. $("#MainRight").width(RightWidth);
  54. }
  55. if(LeftHeight<WindowsHeight||LeftHeight<RightHeight){
  56. if(RightHeight>WindowsHeight){
  57. $("#MainLeft").height(RightHeight);
  58. }else{
  59. $("#MainLeft").height(WindowsHeight);
  60. }
  61. }
  62. }
  63. //==========================================
  64. //函数名:SetRContent
  65. //用途:替换DIV内容
  66. //参数:DivId:要替换的DIV
  67. //     Urls:获取内容的链接
  68. //==========================================
  69. function SetRContent(DivId,Urls){
  70. document.getElementById(DivId).innerHTML="<a href='javascript:void(0);' title='点此关闭' onclick=$('select').show();$('#Boxs').hide()><img src='Images/Loading.gif' /></a>";
  71. $.get(Urls,
  72. function(data){
  73. document.getElementById(DivId).innerHTML=data;
  74. return true;
  75. }
  76. );
  77. }
  78. //==========================================
  79. //函数名:OpenMenu
  80. //用途:菜单开关
  81. //参数:MenuId:菜单ID
  82. //==========================================
  83. function OpenMenu(MenuId){
  84. if($("#"+MenuId).css("display")=="block"){
  85. $("#"+MenuId).css("display","none");
  86. }else{
  87. $("#"+MenuId).css("display","block");
  88. }
  89. }
  90. //==========================================
  91. //函数名:DelIt
  92. //用途:通用删除
  93. //参数:Cstr:提示语句
  94. //     Urls:执行URL
  95. //     F5Url:刷新URL
  96. //     F5Div:刷新DIV
  97. //==========================================
  98. function DelIt(Cstr,Urls,F5Div,F5Url){
  99. if(confirm(Cstr)){
  100. $.get(Urls,
  101. function(data){
  102. alert(data);
  103. var Arrstr1 = new Array();
  104. var Arrstr2 = new Array();
  105. Arrstr1 = F5Div.split("|");
  106. Arrstr2 = F5Url.split("|");
  107. for(var i=0;i<Arrstr1.length;i++){
  108. SetRContent(Arrstr1[i],Arrstr2[i]);
  109. }
  110. return true;
  111. }
  112. );
  113. }
  114. return;
  115. }
  116. //==========================================
  117. //函数名:Sends
  118. //用途:表单提交
  119. //参数:FormName:提交的FORM
  120. //     ToUrl:提交向的链接
  121. //     SuGo:成功后是否转向链接,1转向,0不转向
  122. //     GoUrl:转向链接
  123. //     SuAlert:成功后是否弹出框提示,1弹出,0不弹出
  124. //     SuF5:成功后是否刷新DIV,1刷新,0不刷新
  125. //     F5Url:刷新URL
  126. //     F5Div:刷新DIV
  127. //==========================================
  128. function Sends(FormName,ToUrl,SuGo,GoUrl,SuAlert,SuF5,F5Div,F5Url){
  129.     var options = { 
  130. url:  ToUrl,
  131.         beforeSubmit:function(formData, jqForm, options){
  132.           return true; 
  133. },
  134.         success:function(responseText, statusText){
  135.           if(statusText=="success"){
  136.             if(responseText.search("成功")>0){
  137. if(SuAlert==1){
  138. alert(responseText);
  139. }
  140. else{
  141. $("#Boxs").hide();
  142. $('select').show();
  143. var st=responseText.replace(/|||||/gi,"n");
  144. alert(st);
  145. }
  146. if(SuGo==1){
  147. location.href=GoUrl;
  148. }
  149. if(SuF5==1){
  150. var Arrstr1 = new Array();
  151. var Arrstr2 = new Array();
  152. Arrstr1 = F5Div.split("|");
  153. Arrstr2 = F5Url.split("|");
  154. for(var i=0;i<Arrstr1.length;i++){
  155. SetRContent(Arrstr1[i],Arrstr2[i]);
  156. }
  157. }
  158.             }
  159.             else{
  160. var st=responseText.replace(/|||||/gi,"n");
  161. alert(st);
  162.            }
  163.           }
  164.           else{
  165.             alert(statusText);
  166.           }
  167. }
  168.     }; 
  169.     $('#'+FormName+'').ajaxForm(options); 
  170. }
  171. //==========================================
  172. //函数名:Sends_Div
  173. //用途:表单提交更新DIV
  174. //参数:FormName:提交的FORM
  175. //     ToUrl:提交向的链接
  176. //     F5Div:刷新DIV
  177. //==========================================
  178. function Sends_Div(FormName,ToUrl,F5Div){
  179. document.getElementById(F5Div).innerHTML="<a href='javascript:void(0);' title='点此关闭' onclick=$('select').show();$('#Boxs').hide()><img src='Images/Loading.gif' /></a>";
  180.     var options = { 
  181. url:  ToUrl,
  182.         beforeSubmit:function(formData, jqForm, options){
  183.           return true; 
  184. },
  185.         success:function(responseText, statusText){
  186.           if(statusText=="success"){
  187.             document.getElementById(F5Div).innerHTML=responseText;
  188.           }
  189.           else{
  190.             alert(statusText);
  191.           }
  192. }
  193.     }; 
  194.     $('#'+FormName+'').ajaxForm(options); 
  195. }
  196. //==========================================
  197. //函数名:ChangeSelect
  198. //用途:修改Select内容
  199. //参数:Urls:执行URL
  200. //     SId:操作的Select
  201. //==========================================
  202. function ChangeSelect(Urls,SId){
  203. $.get(Urls,
  204. function(data){
  205. if(data!=""){
  206. BuildSel(data,document.getElementById(SId));
  207. }
  208. return true;
  209. }
  210. );
  211. }
  212. //==========================================
  213. //函数名:BuildSel
  214. //用途:执行修改Select内容
  215. //参数:Urls:执行URL
  216. //     SId:操作的Select
  217. //==========================================
  218. function BuildSel(Str,Sel){
  219. //先清空原来的数据.
  220. var Arrstr = new Array();
  221. Arrstr = Str.split(",,,,,");
  222. //开始构建新的Select.
  223. if(Str!=""){
  224. Sel.options.length=0;
  225. var arrst;
  226. for(var i=0;i<Arrstr.length;i++){
  227. if(Arrstr[i]!=""){
  228. Arrst=Arrstr[i].split("|||||");
  229. Sel.options[Sel.options.length]=new Option(Arrst[1],Arrst[0]);
  230. }
  231. }
  232. }
  233. }