如果未在浏览器中启用JavaScript,如何重定向?

要在Web浏览器中未启用JavaScript的情况下进行重定向,请将脚本添加到<noscript>标记。假设您未启用JavaScript,则需要重定向到index.php。 

示例

这是您可以执行的操作:

<!DOCTYPE html>
<html>
   <head>
      <title>HTML noscript Tag</title>
   </head>
   
   <body>
      <script>
         <!--
            document.write("您好JavaScript!")
         -->
      </script>
     
      <noscript>
         <style>html{display:none;}</style>
         <meta http-equiv="refresh" content="0.0;url=nojs/index.php”>
   </body>
</html>

上面,我们首先使用CSS样式,因为如果Web浏览器中禁用了JavaScript,我们不希望实际页面可见。