标签:
angularjs.html <!doctype html> <html> <head> <meta charset="UTF-8"> <title>AngualrJS进阶</title> <link rel="stylesheet" type="text/css" href="css/foundation.css"> </head> <body style="padding:10px;" ng-app="app"> <div ng-controller="MyCtrl"> <input type="text"ng-model="msg"> <h1>{{msg}}</h1> <br> <h1>{{reverse()}}</h1> <!--调用方法,注意这里要加括号--> </div> <div ng-controller="MyCtrl"> <input type="text" ng-model="user.name"><br><br> <input type="text" ng-model="user.pwd"><br><br> <div ng-click="login()">登录</div> <div ng-show="errormsg.length>0">{{errormsg}}</div> <!--当errormsg长度大于0的时候显示出来--> </div> </body> <script type="text/javascript" src="js/angular.js"></script> <script type="text/javascript" src="js/myctrl.js"></script> </html>
标签:
原文地址:http://www.cnblogs.com/yedushusheng/p/5524234.html