最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Text input inside radio button group loses focus in Firefox when clicked - Stack Overflow

programmeradmin3浏览0评论

I'm having a problem in Firefox where if you click the <input type="text"> in Firefox, the focus is diverted immediately to the Radio button sibling.

The behavior works as intended in Chrome. Do I need extra Javascript to fix this up?

Here's the JsFiddle

I'm having a problem in Firefox where if you click the <input type="text"> in Firefox, the focus is diverted immediately to the Radio button sibling.

The behavior works as intended in Chrome. Do I need extra Javascript to fix this up?

Here's the JsFiddle

Share Improve this question asked Mar 6, 2013 at 17:09 Kurt EmchKurt Emch 5294 silver badges18 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 6

Seems like Firefox is actually doing the correct thing according to the W3C:

If the for attribute is not specified, but the label element has a labelable element descendant, then the first such descendant in tree order is the label element's labeled control.

Your label is wrapping two input elements, so when you click in the text box, the radio (the first such descendant in tree order) receives focus.

Results will vary depending on how the browser has implement this rule, so to ensure cross-browser results yes, you'd need JavaScript to step in.

From MDN:

Permitted content: Phrasing content, but no descendant label elements. No labelable elements other than the labeled control are allowed.

Basically, putting two inputs within a label is not valid markup. Change your html markup so that the label only wraps the radio input (and any text label)...

<label class="radio">
    <input type="radio" name="requestfor" id="optionsRadios2" value="someoneelse" />
    Behalf of
</label>      
<input type="text" name="behalfof" id="behalfid"/>

...and then use javascript (or in my lazy case, jQuery) to select the radio:

$('#behalfid').click(function(){
    $('#optionsRadios2').trigger('click');
});

Here's the fiddle.

Did some digging around and found this jsFiddle with a jQuery solution. Firing trigger.click();on radio input will select it when clicking on the textbox.

发布评论

评论列表(0)

  1. 暂无评论