help.js
上传用户:q2283699q
上传日期:2022-05-17
资源大小:10704k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // global variables
  2. /////////////////////////////////////////////////////////////////////////////
  3. // public functions
  4. /////////////////////////////////////////////////////////////////////////////
  5. // the following are general helper functions
  6. function GetHelpVar(sVariable)
  7. {
  8. var sQuery = window.location.search.substring(1);
  9. var aQueryVars = sQuery.split("&");
  10. for (var i=0;i<aQueryVars.length;i++) {
  11. var aQueryPair = aQueryVars[i].split("=");
  12. if (aQueryPair[0] == sVariable)
  13. return aQueryPair[1];
  14. } // for
  15. return ("");
  16. } // GetHelpVar
  17. function createCookie(name,value,days) 
  18. {
  19. var expires, sDomainHost, sHost, nPortPos;
  20. // get the host string
  21. sHost = top.location.host.toLowerCase();
  22. // check if the host has a port #
  23. nPortPos = sHost.indexOf(":");
  24. if (nPortPos != -1) {
  25. sHost = sHost.substr(0,nPortPos);
  26. } // if
  27. if (days) {
  28. var date = new Date();
  29. date.setTime(date.getTime()+(days*24*60*60*1000));
  30. expires = "; expires="+date.toGMTString();
  31. } // if
  32. else 
  33. expires = "; expires=Thu, 01-Jan-1970 00:00:01 GMT";
  34. if (sHost != "localhost")
  35. sDomainHost = "domain=" + sHost;
  36. else
  37. sDomainHost = "";
  38. document.cookie = name+"="+value+expires+"; path=/;" + sDomainHost;
  39. } // createCookie