我想在 JQuery mobile 中的单选按钮标签中有一个文本框,但是它似乎将文本框的父 div 设置为 2px 高度。
<fieldset data-role="controlgroup">
<input type="radio" name="radio-choice" id="radio-choice-1" value="yes" checked="checked" />
<label for="radio-choice-1">
Yes <input type="password" placeholder="Password"/>
</label>
<input type="radio" name="radio-choice" id="radio-choice-2" value="choice-2" />
<label for="radio-choice-2" >No</label>
</fieldset>
希望你能看到我正在努力实现的目标。也许有更好的方法来做到这一点,而不是添加一个 css 解决方法。我已将问题示例添加到http://jsfiddle.net/yDhP3/