HTML“no-js”的目的是什么?班级?
我注意到在很多模板引擎中,在 HTML5 Boilerplate 中,在各种框架和普通 php 网站中,都有no-js
类添加到 标记上。
为什么要这样做?是否有某种默认浏览器行为对此类做出反应?为什么总是包含它?如果没有 no-“no-js” 情况并且可以直接处理 html,这是否不会导致类本身过时?
下面是 HTML5 Boilerplate index.html 中的一个示例:
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
如您所见, 元素将始终具有此类。 有人能解释一下为什么经常这样做吗?
I notice that in a lot of template engines, in the HTML5 Boilerplate, in various frameworks and in plain php sites there is the no-js
class added onto the <HTML>
tag.
Why is this done? Is there some sort of default browser behavior that reacts to this class? Why include it always? Does that not render the class itself obsolete, if there is no no-"no-js" case and html can be addressed directly?
Here is an example from the HTML5 Boilerplate index.html:
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
As you can see, the <html>
element will always have this class.
Can someone explain why this is done so often?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
查看Modernizer中的源代码,这一部分:
所以基本上它搜索classPrefix +
no-js
类并将其替换为classPrefix +js
。如果 JavaScript 不在浏览器中运行,则其使用方式会有所不同。
Look at the source code in Modernizer, this section:
So basically it search for classPrefix +
no-js
class and replace it with classPrefix +js
.And the use of that, is styling differently if JavaScript not running in the browser.
no-js 类用于设置网页样式,具体取决于用户在浏览器中是否禁用或启用了 JS。
根据 Modernizr 文档:
The no-js class is used to style a webpage, dependent on whether the user has JS disabled or enabled in the browser.
As per the Modernizr docs:
no-js
类被 javascript 脚本删除,因此如果禁用 js,您可以使用 css 修改/显示/隐藏内容。The
no-js
class gets removed by a javascript script, so you can modify/display/hide things using css if js is disabled.这不仅适用于 Modernizer。我看到一些网站实现如下所示来检查它是否有 javascript 支持。
如果存在 javascript 支持,那么它将删除
no-js
类。否则no-js
将保留在 body 标记中。然后,当没有 javascript 支持时,它们控制 css 中的样式。This is not only applicable in Modernizer. I see some site implement like below to check whether it has javascript support or not.
If javascript support is there, then it will remove
no-js
class. Otherwiseno-js
will remain in the body tag. Then they control the styles in the css when no javascript support.Modernizr.js 将删除
no-js
类。这允许您为
.no-js Something
制定 CSS 规则,以便仅在禁用 Javascript 时应用它们。Modernizr.js will remove the
no-js
class.This allows you to make CSS rules for
.no-js something
to apply them only if Javascript is disabled.no-js
类由 Modernizr 功能检测库使用。当 Modernizr 加载时,它会将no-js
替换为js
。如果 JavaScript 被禁用,该类仍然存在。这使您可以编写轻松针对任一条件的 CSS。来自 Modernizrs 的注释源 (不再维护):
这是 Paul Irish 的博客文章,描述了这种方法:
http://www.paulirish.com/2009/avoiding-the-fouc- v3/
我喜欢做同样的事情,但没有 Modernizr。
如果启用了 JavaScript,我将以下
放入
中,将类更改为
js
。我更喜欢使用.replace("no-js","js")
而不是正则表达式版本,因为它不太神秘并且适合我的需求。在此技术之前,我通常只是直接使用 JavaScript 应用依赖于 js 的样式。例如:
使用
no-js
技巧,现在可以使用css
来完成:这是更好的选择,因为:
The
no-js
class is used by the Modernizr feature detection library. When Modernizr loads, it replacesno-js
withjs
. If JavaScript is disabled, the class remains. This allows you to write CSS which easily targets either condition.From Modernizrs' Anotated Source (no longer maintained):
Here is a blog post by Paul Irish describing this approach:
http://www.paulirish.com/2009/avoiding-the-fouc-v3/
I like to do this same thing, but without Modernizr.
I put the following
<script>
in the<head>
to change the class tojs
if JavaScript is enabled. I prefer to use.replace("no-js","js")
over the regex version because its a bit less cryptic and suits my needs.Prior to this technique, I would generally just apply js-dependant styles directly with JavaScript. For example:
With the
no-js
trick, this can Now be done withcss
:This is preferable because:
当 Modernizr 运行时,它会删除“no-js”类并将其替换为“js”。这是一种根据是否启用 Javascript 支持来应用不同 CSS 规则的方法。
请参阅 Modernizer 源代码。
When Modernizr runs, it removes the "no-js" class and replaces it with "js". This is a way to apply different CSS rules depending on whether or not Javascript support is enabled.
See Modernizer's source code.