Execute
<!DOCTYPE html> <html> <head> <title>Wikitechy AngularJS Tutorial</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script> </head> <body> <form ng-app="myApp" name="Form" ng-controller="emailCtrl"> <h3>input[email] directive example</h3> Email: <input type="email" name="input" ng-model="emailtext" required> <span ng-show="Form.input.$error.required"> Required!</span> <span ng-show="Form.input.$error.email"> Not valid email!</span> <p>text = {{emailtext}}</p> <p>Form.input.$valid = {{ Form.input.$valid }}</p> <p>Form.input.$error = {{ Form.input.$error }}</p> <p>Form.$valid = {{Form.$valid}}</p> <p>Form.$error.required = {{ !!Form.$error.required }}</p> <p>Form.$error.email = {{ !!Form.$error.email }}</p> </form> <script> var app=angular.module('myApp', []); app.controller('emailCtrl',function($scope) { }); </script> </body> </html>
www.wikitechy.com © Copyright 2016. All Rights Reserved.