vite创建的项目在ie打开显示空白?

由于用户群使用ie浏览器居多,所以想让用户使用ie浏览时自动提示使用chrome浏览的友好信息,但vite创建的vue项目用ie一打开就显示空白页,参考了https://segmentfault.com/a/1190000041156202的方法,也是显示空白页。也在index.html写了友好提示的脚本,但是没有响应。
index.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <link rel="icon" href="/logo.png" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>情况分析</title>
  </head>
  <script type="text/javascript">
    (function () {
      console.log(navigator);
      var ua = navigator.userAgent.toLocaleLowerCase();
      var browserType = "",
        browserVersion = "";
      if (ua.match(/msie/) != null || ua.match(/trident/) != null) {
        browserType = "IE";
        browserVersion =
          ua.match(/msie ([\d.]+)/) != null
            ? ua.match(/msie ([\d.]+)/)[1]
            : ua.match(/rv:([\d.]+)/)[1];
        if (1 * browserVersion < 9) {
          alert("请在ie11版本浏览器上使用系统");
        }
      }
    })();
  </script>
  <body>
    <div id="app"></div>
    <script type="module" src="/src/main.ts"></script>
  </body>
</html>
阅读 4k
1 个回答
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏