STATS.JAV
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:1k
源码类别:

操作系统开发

开发平台:

DOS

  1. <SCRIPT LANGUAGE="JavaScript" >
  2. <!-- 
  3. var timer_id = 0;
  4. var delay = 2000;                // reload interval in mS
  5. var inside = 0;
  6. function updater() {
  7.       timer_id=window.setTimeout("updater()", delay);
  8.       if ( inside == 0 ) {
  9.          inside = 1;
  10.          Image1 = new Image();
  11.          Image1.src = "graph.gif";
  12.          document.images["graphid"].src = Image1.src;
  13.          Image1.free;
  14.          inside = 0;
  15.       }
  16. }
  17. function start (element_id) {
  18.       timer_id=window.setTimeout("updater()", delay);
  19. }
  20. function stop () {
  21.       window.clearTimeout(timer_id);
  22. }
  23. // -->
  24. </SCRIPT>
  25. </head>
  26. <BODY onload="start(document)"
  27. onunload="stop()">
  28. <form>
  29. <input type="text" name="temp">
  30. </form>
  31. <p>The following graph is generated on-the-fly and just shows the
  32. graphics generation capability.</p>
  33. <p>To change the graph, pick <i>Change Settings</i> in the top frame.</p>
  34. <img src="graph.gif" name="graphid" width=400 height=100>
  35. </body>
  36. </html>