- index.html
仁平君 终南山下,汉水之滨。仁平君者,独步武林。
- app.less
.wrapper {
max-width:500px;
height:auto;
margin:20px auto;
padding:0 10px;
.input_result {
position:relative;
top:-27px;
left:95%;
}
}
3.app.js
angular.module('myApp',[])
.controller('signUpController',function($scope){
$scope.userdata = {};
$scope.submitForm = function(){
console.log($scope.userdata);
if($scope.signUpForm.$invalid)
alert("请检查输入的信息");
else
alert("提交成功")
};
})
.directive('compare',function(){
var o = {};
o.strict= "AE";
o.scope = {
orgText:"=compare"
}
o.require = "ngModel";
o.link = function(sco,ele,att,con){
con.$validators.compare = function(v){
return v == sco.orgText;
}
sco.$watch("orgText",function(){
con.$validate();
});
}
return o;
})
4.预览



