我希望这不是重复的 - 很多类似的问题,但我找不到有效的答案。
我有一个 Angular 指令,因此:
app.directive('emailInput', function(){
return {
restrict: 'E',
templateUrl: 'template.html',
link: function(scope, elem, attrs, ctrl){
elem.bind('keyup', function(){
// TODO - what?
})
}
}
}
并在模板 html 中:
<input type="email" required ng-model="emailAddress" />
在不知道表单名称的情况下,在link
函数内部,我想知道emailAddress.$valid
属性的值 - 我怎样才能得到这个?