请在这里考虑这段代码,也给出了这个小提琴:http: //jsfiddle.net/DPNc6/
HTML:
<div style="width:500px" id="radio">
<input type="radio" id="radio1" name="radio" /><label for="radio1">Choice 1</label>
<input type="radio" id="radio2" name="radio" checked="checked" /><label for="radio2">Choice 2</label>
<input type="radio" id="radio3" name="radio" /><label for="radio3">Choice 3</label>
</div>
JS;
$('#radio').buttonset()
正如大家所看到的,我试图让整个按钮集填充 500 像素的宽度,但是使用这个样式属性似乎没有做任何事情。如何将整个按钮集的宽度设置为一些像素?
谢谢!