为什么从不同的浏览器访问网站的源代码会有所不同?

时间:2017-06-13 20:56:54

标签: javascript html css html5 class

查看来自不同浏览器的bartzmall.pk的源代码,您将看到为每个浏览器添加到html标记的不同类。

来自firefox

<html class="firefox firefox53 otherClasses">

来自chrome

<html class="webkit chrome chrome58 otherClasses">

来自IE

<html class="ie ie11 otherClasses">

来自歌剧

<html class="webkit opera opera45 otherClasses">

班级&#34;其他班级&#34;参考所有浏览器常见的大约14个其他类。

从不同的浏览器访问时,该网站如何更改其源代码?这些因浏览器而异的特殊类有什么用途?

P.S作为一个附带问题,在html标签中添加这么多类背后的意义/智慧/原因是什么?

1 个答案:

答案 0 :(得分:6)

有一个名为“modrnizer”的JS插件(google it)可以检测您的浏览器类型和功能,并根据类插入HTML标记,因此您可以设置CSS规则来响应使用这些类的浏览器之间的特定差异。 / p>

modrnizer网站本身似乎现在已被打破,但这篇文章描述了它是如何运作的:http://html5doctor.com/using-modernizr-to-detect-html5-features-and-provide-fallbacks/