为HTML片段声明doctype是否有意义?

时间:2017-11-29 20:26:07

标签: html5 html-parsing web-component html5-template html-imports

如果我的HTML5组件/ WebComponent的component.html文件定义了<template>,那么<!DOCTYPE html>中的component.html声明是否有意义?也就是说,以下哪项是最佳实践?

<template>
    <!-- some html content -->
</template>

或者

<!DOCTYPE html>
<template>
    <!-- some html content -->
</template>

1 个答案:

答案 0 :(得分:2)

在支持template元素的所有现代浏览器中,两者都将以相同的方式进行解析和处理。

一个是八个八分之一的轻便!

所以这取决于您是否更喜欢速度而不是严格的标准合规性

遵循KISS原则:我写的(和阅读)代码越少,我感觉越好; - )