我正在开发一个仅适用于启用 JavaScript 的浏览器的网站。向非 JavaScript 浏览器提供警告的最佳方式是什么?显然需要使用<noscript>
,但我希望能提供更多细节。我正在考虑类似以下的内容,但它不起作用,甚至无法验证。有什么想法吗?谢谢
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<body class="wrap">
<noscript>
<h1>JavaScript is turned off in your web browser.<br />Turn it on to use this site, then refresh the page.</h1>
<style type="text/css">
body { display:none; }
noscript { display:block !important; }
</style>
</noscript>
HTML for JavaScript browsers goes here...
</body>
</html>