login.js
上传用户:szhf331
上传日期:2022-06-22
资源大小:1032k
文件大小:1k
源码类别:

行业应用

开发平台:

JavaScript

  1. function CheckBrowser() 
  2. {
  3.   var app=navigator.appName;
  4.   var verStr=navigator.appVersion;
  5.   if (app.indexOf('Netscape') != -1) {
  6.     alert("友情提示:n    你使用的是Netscape浏览器,可能会导致无法使用后台的部分功能。建议您使用 IE6.0 或以上版本。");
  7.   } 
  8.   else if (app.indexOf('Microsoft') != -1) {
  9.     if (verStr.indexOf("MSIE 3.0")!=-1 || verStr.indexOf("MSIE 4.0") != -1 || verStr.indexOf("MSIE 5.0") != -1 || verStr.indexOf("MSIE 5.1") != -1)
  10.       alert("友情提示:n    您的浏览器版本太低,可能会导致无法使用后台的部分功能。建议您使用 IE6.0 或以上版本。");
  11.   }
  12. }
  13.   if(self!=top) { // 被嵌在框架里的情况
  14.     top.location=self.location;
  15.    }
  16.   if(opener) { // 被window.opne()函数弹出的情况
  17.     opener.location.replace(self.location);
  18.     self.close();
  19.    }
  20.   if(window.dialogArguments) { // 被window.showModalDialog()等弹出模态窗口的情况
  21.     window.dialogArguments.location.replace(self.location);
  22.     self.close();
  23.    }