<span editable-text="contact.phoneNumber" maxlength="5" e-name="phoneNumber" e-form="contactForm" >
{{ contact.phoneNumber || '' }}
</span>
我在span中使用了该指令,它在运行时生成和输入框,当我们点击按钮编辑联系号码时。我想在此输入框中添加最大长度。有什么建议吗?
答案 0 :(得分:8)
答案 1 :(得分:0)
创建一个限制值的指令:
app.directive("limitTo", [function() {
return {
restrict: "A",
link: function(scope, elem, attrs) {
var limit = parseInt(attrs.limitTo);
angular.element(elem).on("keydown", function() {
if (this.value.length == limit) return false;
});
}
} }]);
<input limit-to="4" type="number" class="form-control input-lg" ng-model="search.main" placeholder="enter first 4 digits: 09XX">
希望这会帮助你