我有很多通过javascript实现的功能,如果在任何阶段javascript被禁用,他应该被重定向到另一个页面。提到他启用javascript然后继续。 并且此功能应该是跨浏览器兼容的 方面,
答案 0 :(得分:20)
使用<noscript
&gt;标记以检查JavaScript是否已启用。<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.google.com/">
会将其重定向到指定的网址。在此示例中,它将重定向到Google。
这是一个例子。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>How To Detect If User Javascript Is Enabled</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.style1 {
color: #FF0000;
font-weight: bold;
}
-->
</style>
</head>
<body>
<p>The Purpose of this script is to show if you have javascript enabled in your browser.</p>
<p class="style1">
<script type="text/javascript">
document.write('Javascript is enabled');
</script>
<noscript>
Javascript is disabled.
<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.google.com/">
</noscript>
</p>
</p>
</body>
</html>
答案 1 :(得分:9)
从noscript块执行http重定向。像:
<noscript>
<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/index.html">
</noscript>
答案 2 :(得分:2)
将noscript
元素与meta
重定向一起使用。
答案 3 :(得分:1)
你可以试试这个, 这将写入未启用javascript的消息,并在5秒内刷新
<noscript>
Javascript is not enabled in your browser, you'll be redirected to another page.
<meta HTTP-EQUIV="REFRESH" content="5; url=http://www.mysite.com/nojavascript.html">
</noscript>
答案 4 :(得分:0)
我认为noscript Tag在这种情况下会有所帮助。这将在禁用javascript时执行。因此,您可以使用元重定向