我有一条弹出消息,告诉用户何时禁用JavaScript。问题出现在 Chrome 。
中这里的网站只包含我的<noscript>
:Cloud9 Website。如果您启用了JavaScript,则它是空白的。以下是如何复制我的经验:
您应该能够看到<noscript>
中的原始HTML。如果您再次重新加载页面,则会弹出正确的消息。
我也用XAMPP在本地进行了测试:同样的事情。
这是我的HTML:
<noscript>
<div class="nojs">This website requires JavaScript to run.  Please<a href="activatejs.php"class="link" target="_blank">enable it</a> or use a web browser that supports JavaScript.</div>
</noscript>
答案 0 :(得分:0)
虽然这是一个错误,但你可以使用这个工作:
<div class="nojs"><noscript>This website requires JavaScript to run. Please </noscript><a href="activatejs.php"class="link" target="_blank"><noscript>enable it</noscript></a><noscript> or use a web browser that supports JavaScript.</noscript></div>