6 回答

TA貢獻1818條經驗 獲得超11個贊

TA貢獻1793條經驗 獲得超6個贊
bootcssVer直接設置為3,是可以的,只是如果像下面這個寫法:
<div class="form-group">
<label for="time" style="float:left; line-height: 30px">時間:</label>
<div class="input-append date form_datetime" style="float:left">
<input name="time" id="time" class="input-sm" type="text" readonly="readonly"/>
<span class="add-on"><i class="icon-calendar"></i></span>
</div>
</div>
會導致顯示不正確的問題,這是因為div導致inLine屬性被激活導致的,
得改成:
<div class="form-group">
<label for="time" style="float:left; line-height: 30px">推送時間:</label>
<input name="time" id="time" class="form-control date form_datetime" type="text" readonly="readonly"/>
<!--<span class="add-on"><i class="glyphicon glyphicon-calendar"></i></span>-->
</div>
,有人說在input加form-control也是可行的,像上面一樣,就不需要在初始化時加bootcssVer:3。
添加回答
舉報