このページの翻訳:
- 日本語 (ja)
- English (en)
最近の更新
- 02 Apache2で自己認証ssl [中間証明書の整合性確認]
最近の更新
<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(039;ui-corner-left039;).addClass(039;ui-corner-top039;); $("#type label:last").removeClass(039;ui-corner-right039;).addClass(039;ui-corner-bottom039;); $("#type label").each(function(){ $(this).width(039;100%039;); }); $("#type span").each(function(){ $(this).removeClass(039;ui-button-text039;); });