标签:java app asc cti charset logs bsp stc put
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> </head> <body> <div ng-app> <div ng-controller="firstController"> <input type="text" value="" ng-model="name"> <div ng-controller="secondController"> <input type="text" value="" ng-model="name"> </div> </div> </div> <script type="text/javascript" src="app/index.js"></script> <script type="text/javascript" src="../../vendor/angular/angularjs.js"></script> </body> </html>
var firstController = function ($scope) { $scope.name = ‘Alrale‘; $scope.age = ‘20‘; } var secondController = function ($scope) { }
标签:java app asc cti charset logs bsp stc put
原文地址:http://www.cnblogs.com/bky-1083/p/6352245.html