whtdata.js
上传用户:aonuowh
上传日期:2021-05-23
资源大小:35390k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. var gTEA = new Array();
  2. function aTE()
  3. {
  4. gTEA[gTEA.length] = new tocEntry(aTE.arguments);
  5. }
  6. function tocEntry(fn_arguments) 
  7. {
  8. if (fn_arguments.length < 3)
  9. {
  10. alert ("data format wrong!!!");
  11. return;
  12. }
  13. this.nType = fn_arguments[0];
  14. this.nContents = fn_arguments[1];
  15. this.sItemName = fn_arguments[2];
  16. if (this.nType == 1 || this.nType == 2 || this.nType == 16)
  17. {
  18. if (fn_arguments.length > 3)
  19. {
  20. this.sItemURL = fn_arguments[3];
  21. if (fn_arguments.length > 4)
  22. {
  23. this.sTarget = fn_arguments[4];
  24. if (fn_arguments.length > 5)
  25. this.sIconRef = fn_arguments[5];
  26. }
  27. }
  28. }
  29. if (this.nType == 4 || this.nType == 8)
  30. {
  31. if (fn_arguments.length > 3)
  32. {
  33. this.sRefURL = fn_arguments[3];
  34. if (fn_arguments.length > 4)
  35. {
  36. this.sItemURL = fn_arguments[4];
  37. if (fn_arguments.length > 5)
  38. {
  39. this.sTarget = fn_arguments[5];
  40. if (fn_arguments.length > 6)
  41. this.sIconRef = fn_arguments[6];
  42. }
  43. }
  44. }
  45. }
  46. }
  47. function window_OnLoad()
  48. {
  49. if (parent && parent != this && parent.putData) {
  50. parent.putData(gTEA);
  51. }
  52. }
  53. window.onload = window_OnLoad;