输入字段为只读,而不将输入附加按钮设为只读

时间:2018-06-19 11:30:04

标签: html angularjs twitter-bootstrap

当我将输入字段设为只读时,它会自动将input-group-addon中的按钮也设为只读。

下面是代码:

<div class="input-group date" id="dt_{{$id}}" ng-class="{ 'has-error' : !$valid }">

    <input type="text" readonly id="date-input_{{$id}}" class="form-control" ng-model="inputValue" />
    <span class="input-group-addon"> 
                <span class="glyphicon glyphicon-calendar"></span>
    </span>

</div>

由于无法使用输入字段,因此如何使输入字段为只读而不使按钮为空。

0 个答案:

没有答案