前端之家收集整理的这篇文章主要介绍了
html – 标签只能引用输入元素吗?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
W3Schools有这样的说法约
labels:
The <label>
tag defines a label for an input element.
[Emphasis mine]
这是否意味着以下HTML无效?
<html>
<body>
<label for="x">Label</label>
<hr>
<div id="q" contentEditable="true">Hello</div>
<hr>
<div id="x" contentEditable="true">World</div>
</body>
</html>
Chrome和IE8都会在点击标签时将重点放在World,Firefox不支持.
哪个是对的?
根据
W3C,它适用于表单控件,表单控件是
defined as:
>按钮
>复选框
>单选按钮
>菜单
>文字输入
>文件选择
>隐藏的控件
>对象标签
所以FireFox在技术上是正确的,虽然如果一个浏览器没有限制到这些元素,我很难认为它是“打破”的.
原文链接:https://www.f2er.com/html/224784.html