在WebComponents中为轻型DOM定义插入点时,这两种语法之间有什么区别吗?
<template id="my-element">
<content></content>
</template>
和
<template id="my-element">
<content/>
</template>
正确或最佳定义标记的方式是什么?
我在Firefox / Chrome中测试了两种语法,它们的行为相同(至少在一个简单的测试中)。
答案 0 :(得分:1)
查看https://developer.mozilla.org/en-US/docs/Web/HTML/Element/content:
标记省略:无,起始标记和结束标记均为必填。