【泛微OA】禁止使用IE
jQuery(window).load(function(){
//判断浏览器
browserWarning();
checkCustomize = function (){//提交函数
var mb = myBrowser();
if(mb != "Chrome")
{
window.top.Dialog.alert("请使用谷歌内核浏览器使用OA系统(如360浏览器急速模式),OA系统不支持IE浏览器。");
return false;
}
return true;//提交
}
});
function browserWarning(){
var mb = myBrowser();
if(mb != "Chrome")
{
window.top.Dialog.alert("请使用谷歌内核浏览器使用OA系统(如360浏览器急速模式),OA系统不支持IE浏览器。");
}
}
function myBrowser(){
var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串
if (userAgent.indexOf("Opera") > -1) {//判断是否Opera浏览器
return "Opera";
}
if (userAgent.indexOf("Firefox") > -1) {//判断是否Firefox浏览器
return "Chrome";
}
if (userAgent.indexOf("Edge") > -1){
return "Edge";
}
if (userAgent.indexOf("Safari") > -1) {//判断是否Safari浏览器
return "Chrome";
}
if (userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1) {//判断是否IE浏览器
return "IE";
}
if (userAgent.indexOf("Chrome") > -1){
return "Chrome";
}
return "IE";
}
共有 0 条评论