我有一個數字輸入字段。我想從最小寬度開始,以便輸入符合默認值-1。當值減少到-100,-1,000等或增加時,我想調整輸入寬度,以便整個字段可見。Twitter Bootstrap:調整數字輸入的大小以適應內容變化
<div class="col-lg-4 input-group ">
<span class="input-group-addon">$</span>
<input name="childPrice" id="childPrice" type="number" step=".25" value="-1" min="-99999" max="-1" class="form-control" onchange="$(this).attr('size', $(this).val().length);" size="9">
<span class="input-group-addon">/ticket</span>
</div>
你的方法工作,如果你使用類型=「文本」,但我猜你要使用的號碼。 – Mathias