autoupdate.js
上传用户:rblchem
上传日期:2022-04-27
资源大小:1941k
文件大小:0k
源码类别:

编辑器/阅读器

开发平台:

C#

  1. var Rash=true;
  2. var msg="";
  3. function norash()
  4. {
  5. if (confirm("确定要取消吗"))
  6. Rash=false;
  7. }
  8.  
  9.  function rashit()
  10. {
  11. setInterval('getrss()',Inttime);
  12. }
  13. function getrss()
  14. {
  15. if (Rash==true)
  16. {
  17. head=document.getElementsByTagName('head').item(0);
  18. script=document.createElement('script');
  19. script.src='INCLUDE/AutoUpdate.asp';
  20. script.type='text/javascript';
  21. script.defer=true;
  22. void(head.appendChild(script));
  23. window.status=msg;
  24. }
  25. }
  26. rashit();