嗨,我在移动应用程序,我正在尝试创建一个水平radiobutton全宽,每个按钮33%。
这是我的代码
items.push('<div id="id' + i + '" data-role="fieldcontain"><fieldset data-role="controlgroup" data-type="horizontal" class="row_b">');
items.push('<input type="radio" name="radio'+ i +'-choice-1" id="radio'+ i +'-choice-1" value="choice_1" /><label for="radio'+ i +'-choice-1">test1</label>');
items.push('<input type="radio" name="radio'+ i +'-choice-1" id="radio'+ i +'-choice-2" value="choice_2" /><label for="radio'+ i +'-choice-2">test2</label>');
items.push('<input type="radio" name="radio'+ i +'-choice-1" id="radio'+ i +'-choice-3" value="choice_3"/><label for="radio'+ i +'-choice-3">Clear</label>');
items.push('</fieldset></div>');
html += items.join('');
list.append(html).trigger('create');
我尝试了这个解决方案JQueryMobile radio buttons with fieldcontain width issue on desktop,但它对我不起作用......
我的html如下
.row_b .ui-btn {
text-align: center;
width: 33%;
}
请咨询
答案 0 :(得分:0)
我没有时间为自己尝试这个直到今晚,但我有同样的问题,这个链接可以解决我们的问题:http://the-jquerymobile-tutorial.org/jquery-mobile-tutorial-CH13.php