因此,考慮到以下標記,如果用戶瀏覽器禁用了JavaScript,它們將被重定向到備用頁面,該頁面試圖模擬沒有JavaScript(可能是動態呈現的頁面)的網站功能,或者一個警告頁面,通知必須啓用JavaScript使用網站將JavaScript禁用的用戶重定向
<!doctype html>
<html>
<head>
<!-- If the browser has javascript disabled, the browser will be redirected-->
<!-- to a page that does not require javascript to function, or informs the-->
<!-- the user of the requirement for javascript to be enabled-->
<noscript>
<meta http-equiv="refresh" content="5; url=/warning.html"/>
</noscript>
<title>
Page Title
</title>
</head>
<body>
<script>
// rich client logic
</script>
</body>
</html>
通過this html5 validator來看還有w3c validator用戶這樣看來,上面是有效的HTML5。我正在考慮使用這種技術來管理沒有啓用JavaScript的用戶,從而無法使用我正在計劃的單頁應用程序,但我之前沒有看到它,並且想知道是否
(a)有任何人(b)任何人都可以提出任何有價值的批評,因爲我爲什麼不考慮使用這種技術?
現在它看起來像一個可行的選項給我,但我並不完全相信潛在的副作用(如瀏覽器不尊重重定向的條件)。
相關問題[