假设我有这样的HTML代码:

<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
This is content.
</body>
</html>

我想在那里添加一个<noscript>标记。这意味着,如果禁用了JavaScript,它将显示为空白页。

并且只有在禁用JavaScript的情况下,它才会显示“这是内容文本”。

请给我一些例子来实现。谢谢。

最佳答案

rahul建议的JS方法的替代方法是在<noscript>元素中显示一个div,覆盖整个页面:

<noscript>
    <div style="position: fixed; top: 0px; left: 0px; z-index: 3000;
                height: 100%; width: 100%; background-color: #FFFFFF">
        <p style="margin-left: 10px">JavaScript is not enabled.</p>
    </div>
</noscript>

关于noscript - javascript禁用时如何包装<noscript>标记以隐藏内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1431137/

10-13 03:33