gpt4 book ai didi

javascript - 当我的 Vue 应用程序无法在 IE11 上呈现时,如何显示免责声明屏幕?

转载 作者:行者123 更新时间:2023-12-04 12:10:07 24 4
gpt4 key购买 nike

我的应用程序是在 Vue 中开发的,目前它在 IE11 和旧 Edge 中效果不佳,我可以在 Edge 上呈现“请更新您的浏览器屏幕”,因为该应用程序会加载一些,但是 IE11 只是显示一个空白屏幕。
如何检查用户是否在 IE11 上,然后只呈现一个要求他们更新浏览器的纯 HTML/CSS 页面?

最佳答案

我以前遇到过这种问题。我检测浏览器版本,如果 IE 然后呈现您需要的一些消息。如果不是 IE,则渲染 vue 应用程序。
我在 中使用 JavaScript公共(public)/index.html 检测浏览器,代码如下:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>my-vue-app</title>
</head>
<body>
<noscript>
<strong>We're sorry but my-vue-app doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<!-- built files will be auto injected -->
<script type="text/javascript">
function get_browser() {
var ua = navigator.userAgent, tem, M = ua.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || [];
if (/trident/i.test(M[1])) {
tem = /\brv[ :]+(\d+)/g.exec(ua) || [];
return { name: 'IE', version: (tem[1] || '') };
}
if (M[1] === 'Chrome') {
tem = ua.match(/\bOPR\/(\d+)/)
if (tem != null) { return { name: 'Opera', version: tem[1] }; }
}
if (window.navigator.userAgent.indexOf("Edge") > -1) {
tem = ua.match(/\Edge\/(\d+)/)
if (tem != null) { return { name: 'Edge', version: tem[1] }; }
}
M = M[2] ? [M[1], M[2]] : [navigator.appName, navigator.appVersion, '-?'];
if ((tem = ua.match(/version\/(\d+)/i)) != null) { M.splice(1, 1, tem[1]); }
return {
name: M[0],
version: +M[1]
};
}

var browser = get_browser()
var isSupported = isSupported(browser);

function isSupported(browser) {
var supported = false;
if (browser.name === "Chrome" && browser.version >= 48) {
supported = true;
} else if ((browser.name === "MSIE" || browser.name === "IE") && browser.version <= 11) {
supported = false;
} else if (browser.name === "Edge") {
supported = true;
}
return supported;
}

if (!isSupported) {
//render unsupported message
document.write("<h1>The app is not supported in IE. Please use other browsers!</h1>");
}
else{
//render app
var elem = document.createElement("div");
elem.setAttribute("id", "app")
document.body.appendChild(elem);
}
</script>
</body>
</html>

关于javascript - 当我的 Vue 应用程序无法在 IE11 上呈现时,如何显示免责声明屏幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62938071/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com