我有一个输入字段的字符计数器,它按预期工作只有我看到的问题,当我使用IE浏览器时,用户用“x”图标清除字段,而不是将工具提示值设置回maxLength。在使用IE'x'清除字段时,是否有任何关于如何触发事件的工作。
main.html中
<div class="col-md-3">
<input type="text" class="form-control"
ng-model="input.searchValue" placeholder="Enter search item"
maxlength="256" name={{$index}}
data-tooltip-html-unsafe="
<div>{{256 - input.searchValue.length}} characters left</div>"
tooltip-trigger="{{{true: 'focus', false: 'never'}[ input.searchValue.length >= 0 || input.searchValue.length == null ]}}"
tooltip-placement="top" tooltip-class = "bluefill"/>
</div>