Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要知道当用户将鼠标悬停在该元素上时,如何将“框”聚焦在复选框元素内。我可以聚焦框的唯一方法是将鼠标悬停在框本身上,而不是文本上。事实上,当我单击文本时,我什至无法选中该框。
提前致谢!
将复选框和文本包装在<label>标签中。
<label>
前任:<label><input name="myCheckbox" type="checkbox" />My Checkbox</label>
<label><input name="myCheckbox" type="checkbox" />My Checkbox</label>
我不确定你说的第一行是什么意思。如果您使用<label>,这允许您单击文本,并使其可供残障人士访问。
<input type='checkbox' id="male"><label for="male">Male</label>
请参阅WebAIM 的可访问控件页面