这是HTML:
<fieldset>
<legend>FieldsetName</legend>
<div></div>
</fieldset>
这是CSS:
legend:focus {
background-color: #ffddbe;
outline: none;
}
legend.focusin {
background-color: #ffddbe;
outline: none;
}
点击它不会做任何事情。
好吧,我想,我会选择jQuery。
$('legend').focusin( function() {
$(this).addClass('focusin');
});
$('legend').focusout( function() {
$(this).removeClass('focusin');
});
它也没有帮助。 但是,如果$(&#39; legend&#39;)收听&#34;点击&#34;,它会执行它应该执行的操作。是什么给了什么?
答案 0 :(得分:2)
答案 1 :(得分:1)
最好使用tabindex =“0”。
<legend tabindex="0">FieldsetName</legend>
以下是可能的tabindex值和用例的细分: