来自https://titobouzout.github.io/react/tips/self-closing-tag.html,它说:
在JSX中,
<MyComponent />
单独有效,而<MyComponent>
不是。{1}}。所有 必须使用自闭格式或使用a关闭标签 相应的结束标记(</MyComponent>
)。注意:
每个React组件都可以自动关闭:<div />
。<div></div>
也是一个等价物。
从XHTML到HTML5,似乎我们不使用自动关闭标签,现在当我们转向JSX时,我们会再次使用它吗?
我更关注<input />
和<img ... />
,因为我们似乎无法写<input>
和<img ...>
但必须写<input />
和<img ... />
}?