Script.js
上传用户:whzhongbo
上传日期:2022-07-31
资源大小:1531k
文件大小:7k
源码类别:

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

开发平台:

DOS

  1. function SearchWord(VType)
  2. {
  3. location.href = "/Search.aspx?Type=" + VType + "&Keyword=" + Search.Keyword.value;
  4. }
  5. function CheckOthers(form)
  6. {
  7. for (var i=0;i<form.elements.length;i++)
  8. {
  9. var e = form.elements[i];
  10. // if (e.name != 'chkall')
  11. if (e.checked==false)
  12. {
  13. e.checked = true;// form.chkall.checked;
  14. }
  15. else
  16. {
  17. e.checked = false;
  18. }
  19. }
  20. }
  21. function CheckAll(form)
  22. {
  23. for (var i=0;i<form.elements.length;i++)
  24. {
  25. var e = form.elements[i];
  26. e.checked = true;
  27. }
  28. }
  29. function PlayList(form)
  30. {
  31. var ids="";
  32. for (var i=0;i<form.elements.length;i++)
  33. {
  34. var e = form.elements[i];
  35. if (e.type=="checkbox")
  36. {
  37. if (e.checked==true) ids = ids + e.value + ',';
  38. }
  39. }
  40. if (ids=="")
  41. {
  42. alert("请选择要播放的歌曲");
  43. return false;
  44. }
  45. ids=ids.substring(0,ids.length-1);
  46. window.open("/PlayList.aspx?ID=" + ids,"","");
  47. }
  48. function DownList(form)
  49. {
  50. var ids="";
  51. for (var i=0;i<form.elements.length;i++)
  52. {
  53. var e = form.elements[i];
  54. if (e.type=="checkbox")
  55. {
  56. if (e.checked==true) ids = ids + e.value + ',';
  57. }
  58. }
  59. if (ids=="")
  60. {
  61. alert("请选择要下载的歌曲");
  62. return false;
  63. }
  64. ids=ids.substring(0,ids.length-1);
  65. window.open("/Download.aspx?ID=" + ids,"","");
  66. }
  67. function ToPage(Page,FilaName)
  68. {
  69. if (Page=="")
  70. {
  71. alert("请输入页数");
  72. GoPage.focus();
  73. return false;
  74. }
  75. var Url = QueryString("Page",FilaName);
  76. location.href=Url + "Page=" + Page;
  77. }
  78. function ToPageHtml(Url)
  79. {
  80. if (Url=="")
  81. {
  82. alert("请输入页数");
  83. GoPage.focus();
  84. return false;
  85. }
  86. location.href=Url;
  87. }
  88. function QueryString(sName,FName)
  89. {
  90. var Url = String(this.location);
  91. var iPos;
  92. var Para = "";
  93. iPos = Url.indexOf("?");
  94. if (iPos != -1)
  95. {
  96. var Url = Url.substr(iPos + 1, Url.length - iPos);
  97. var arra = Url.split("&");
  98. for(var i=0;i<arra.length;i++)
  99. {
  100. if (arra[i].indexOf(sName) == -1) Para = Para + arra[i] + "&";
  101. }
  102. }
  103. return FName + "?" + Para;
  104. }
  105. function CLoop(PType)
  106. {
  107. var Duration=ObPlayer1.currentMedia.getItemInfo("Duration");
  108. var PTitle=ObPlayer1.currentMedia.getItemInfo("Title");
  109. if (Duration=="60.139" && PTitle=="All I Know")
  110. {
  111. Refres.innerHTML="<iframe id= width=1 height=0 src=/PathReload.asp frameborder=no marginwidth=0 marginheight=0 scrolling=no></iframe>";
  112. if (PType==1)
  113. {
  114. setTimeout("location.reload();",3000);
  115. }
  116. else
  117. {
  118. setTimeout("Next_OneOK();",3000);
  119. }
  120. }
  121. else
  122. {
  123. setTimeout("CLoop(" + PType + ")",1000);
  124. }
  125. }
  126. function PList(form)
  127. {
  128. var ids="";
  129. for (var i=0;i<form.elements.length;i++)
  130. {
  131. var e = form.elements[i];
  132. if (e.type=="checkbox")
  133. {
  134. if (e.checked==true) ids = ids + e.value + ',';
  135. }
  136. }
  137. if (ids=="")
  138. {
  139. alert("请选择要播放的歌曲");
  140. return false;
  141. }
  142. ids=ids.substring(0,ids.length-1);
  143. location.href="/PlayList.aspx?ID=" + ids;
  144. }
  145. function GiveSpecial(Url)
  146. {
  147. window.clipboardData.setData('Text',Url);
  148. alert('n地址已经复制,您可以将它粘贴到任何位置了,如QQ、BBS、聊天室等。');
  149. }
  150. function setCookie(name,value)
  151. {
  152.     var Days = 30;
  153.     var exp  = new Date();    //new Date("December 31, 9998");
  154.         exp.setTime(exp.getTime() + Days*24*60*60*1000);
  155.         document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString();
  156. }
  157. function getCookie(name)
  158. {
  159.     var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)");
  160.         if(arr=document.cookie.match(reg)) return unescape(arr[2]);
  161.         else return null;
  162. }
  163. function delCookie(name)
  164. {
  165.     var exp = new Date();
  166.         exp.setTime(exp.getTime() - 1);
  167.     var cval=getCookie(name);
  168.         if(cval!=null) document.cookie= name + "="+cval+";expires="+exp.toGMTString();
  169. }
  170. function AddRecord(Url)
  171. {
  172. var WinWidth = 600;
  173. var WinHeight = 500;
  174. var WinLoca = (screen.width - WinWidth)/2;
  175. var TopLoca = (screen.height - WinHeight)/2;
  176. window.open(Url,"NewWindow","height=" + WinHeight + ",width=" + WinWidth + ",top=" + TopLoca + ",left=" + WinLoca + ",toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");
  177. }
  178. function AdminSearch(Url)
  179. {
  180. var WinWidth = 600;
  181. var WinHeight = 120;
  182. var WinLoca = (screen.width - WinWidth)/2;
  183. var TopLoca = (screen.height - WinHeight)/2;
  184. window.open(Url,"NewWindow","height=" + WinHeight + ",width=" + WinWidth + ",top=" + TopLoca + ",left=" + WinLoca + ",toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");
  185. }
  186. function Edit(Url)
  187. {
  188. var IsCheck = false;
  189. var TempID = "";
  190. divCount = document.all.tags("input");
  191. for (i=0; i<divCount.length; i++)
  192. {
  193. obj = divCount(i);
  194. if (obj.checked)
  195. {
  196. IsCheck = true;
  197. TempID = obj.value;
  198. }
  199. if (IsCheck && TempID != "")
  200. {
  201. var WinWidth = 600;
  202. var WinHeight = 500;
  203. var WinLoca = (screen.width - WinWidth)/2;
  204. var TopLoca = (screen.height - WinHeight)/2;
  205. window.open(Url + TempID,"EditWindow","height=" + WinHeight + ",width=" + WinWidth + ",top=" + TopLoca + ",left=" + WinLoca + ",toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");
  206. }
  207. else alert("请选择要编辑的记录")
  208. }
  209. function Del(Url)
  210. {
  211. var IsCheck = false;
  212. var TempID = "";
  213. divCount = document.all.tags("input");
  214. for (i=0; i<divCount.length; i++)
  215. {
  216. obj = divCount(i);
  217. if (obj.checked)
  218. {
  219. IsCheck = true;
  220. TempID = TempID + obj.value + ',';
  221. }
  222. TempID=TempID.substring(0,TempID.length-1);
  223. if (IsCheck && TempID != "")
  224. {
  225. if (window.confirm('真的要删除吗?'))
  226. {
  227. window.open(Url + TempID,"DelWindow","height=1,width=1,top=" + (screen.height-133)/2 +",left=" + (screen.width-115)/2 + ",toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");
  228. }
  229. }
  230. else alert("请选择要删除的记录")
  231. }
  232. function SelectOne(v)
  233. {
  234. divCount = document.all.tags("tr");
  235. for (i=0; i<divCount.length; i++)
  236. {
  237. obj = divCount(i);
  238. if (obj.id.indexOf("trID") != -1)
  239. {
  240. obj.bgColor = "#FFFFFF";
  241. var id = obj.id.replace("trID","")
  242. if (id == v ) obj.bgColor = "#EEF2F7";
  243. }
  244. }
  245. divCount = document.all.tags("input");
  246. for (i=0; i<divCount.length; i++)
  247. {
  248. obj = divCount(i);
  249. if (obj.value==v) obj.checked = true;
  250. else obj.checked = false
  251. }
  252. }
  253. function SelectMusic(v)
  254. {
  255. divCount = document.all.tags("tr");
  256. for (i=0; i<divCount.length; i++)
  257. {
  258. obj = divCount(i);
  259. if (obj.id.indexOf("trID") != -1)
  260. {
  261. obj.bgColor = "#FFFFFF";
  262. var id = obj.id.replace("trID","")
  263. if (id == v ) obj.bgColor = "#EEF2F7";
  264. }
  265. }
  266. divCount = document.all.tags("input");
  267. for (i=0; i<divCount.length; i++)
  268. {
  269. obj = divCount(i);
  270. if (obj.value==v)
  271. {
  272. if (obj.checked) obj.checked = false;
  273. else obj.checked = true
  274. }
  275. }
  276. }