angular入门

来源:互联网 发布:卡宾男装淘宝客服电话 编辑:程序博客网 时间:2024/05/16 11:37
1.下载angular.js,导入。

2.<hello.html>

        <div ng-controller='HelloController'>{{greeting.text}},world</div> <script type="text/javascript" src="./lib/angular.js"></script> <script type="text/javascript" src="./lib/hello.js"></script>

3.<hello.js>

function HelloController($scope){    $scope.greeting = {text:'hello'};}


0 0