这是 Angular.JS 中的电子邮件检查元素代码 几乎没问题,但这有一个问题。当我填写电子邮件检查元素时,它已重置!
示例 I 将其写入电子邮件检查元素。
“test@test.com”
但这是重置!当我写“。” <-点。
“测试@测试” <- 好的
“测试一下。” <- 重置输入。当我写“。” <-
为什么会出现问题?
Javascript
<script>
angular.module('test', [])
.controller('MyController', ['$scope', '$window', function($scope, $window) {
$scope.sendMessage=function(toSb){
alert(toSb);
};
}])
.directive('emailInput', function($compile) {
return {
restrict: 'C',
template: '<input type="email" ng-model="emailtext" required>{{emailtext}}',
link: function(scope, elem, attrs){
scope.name="emailAddress";
var input = elem.find("input")[0];
input.name = "emailAddress";
$compile(input)(scope);
}
};
});
</script>
HTML
<form name="myForm">
<div class="email-input"></div>
inputIsValid={{myForm.emailAddress.$valid}}<br>
<span class="error" ng-show="myForm.emailAddress.$error.required">Required!</span>
<span class="error" ng-show="myForm.emailAddress.$error.email">Not valid email!</span>
</form>