0
當我用兩個按鈕組,它們不會顯示在同一行。有沒有辦法在同一行顯示這兩個?這裏是我的代碼jQuery UI的單選按鈕組換行符
HTML:
<div id="view">
<input type="radio" id="radio1" name="radio" /><label for="radio1">Regular</label>
<input type="radio" id="radio2" name="radio" checked="checked" /><label for="radio2">Investments</label>
<input type="radio" id="radio3" name="radio" /><label for="radio3">All</label>
</div>
<div id="lod">
<input type="radio" id="lod_S" name="radio" checked="checked" /><label for="radio2">Summary</label>
<input type="radio" id="lod_D" name="radio" /><label for="radio3">Detail</label>
</div>
的javascript:
$('#view,#lod').buttonset();
在此先感謝您的幫助。
完美。 CSS做了竅門,謝謝 – 2013-04-07 00:16:39