このページの翻訳:
- 日本語 (ja)
- English (en)
最近の更新
Tag Cloud
このページへのアクセス
今日: 3 / 昨日: 0
総計: 441
- Dokuwiki.fl8.jp(261)
- 13 CentOS6メール設定(15)
- 34 UnboundでHA構成(13)
- 05 rsync(13)
- FreeBSD カーネル再構築(12)
- 02 ProFTPD(12)
最近の更新
このページへのアクセス
今日: 3 / 昨日: 0
総計: 441
<div class="span1" align="left" id="type"> <label class="control-label required" id="color" for="form_type_0">main</label> <input type="radio" id="form_type_0" name="form[type]" required="required" class="span3 inline" placeholder="type" value="1" checked="checked" /> <label class="control-label required" id="color" for="form_type_1">volumes</label> <input type="radio" id="form_type_1" name="form[type]" required="required" class="span3 inline" placeholder="type" value="2" /> <label class="control-label required" id="color" for="form_type_2">session</label> <input type="radio" id="form_type_2" name="form[type]" required="required" class="span3 inline" placeholder="type" value="3" /> </div>
通常(横にボタンが並ぶ)
$("#type").buttonset();
下記のようにすると、ボタンを縦に並べる事ができる。
$("#type").buttonset(); $("#type label:first").removeClass('ui-corner-left').addClass('ui-corner-top'); $("#type label:last").removeClass('ui-corner-right').addClass('ui-corner-bottom'); $("#type label").each(function(){ $(this).width('100%'); }); $("#type span").each(function(){ $(this).removeClass('ui-button-text'); });