首页 > Web开发 > 详细

angular.js第二个项目 绑定

时间:2016-02-23 19:00:46      阅读:125      评论:0      收藏:0      [点我收藏+]

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
</head>
<body>

<div ng-app="myApp" ng-controller="myCtrl">
名字: <input ng-model="name">
<h1>{{name}}</h1>
    
<table >
    <tr>
        <th  ng-repeat="y in attrlist">
            {{y.name}}
        </th>    
    </tr>
</table>    
<table ng-repeat="y in attrlist">
    <tr   ng-repeat="x in y.attr_values">
        <td>
            {{y.name}}{{x.v_name}}
        </td>            
        <td>
            价格:<input name="{{x.attrid}}-price">
        </td>    
    </tr>
</table>    
</div>

<script>
var app = angular.module(‘myApp‘, []);
app.controller(‘myCtrl‘, function($scope) {
    $scope.name = "John Doe";
    $scope.attrlist=[{attrid:1,name:‘颜色‘,attr_values:[{v_id:1,v_name:‘白色‘},{v_id:2,v_name:‘黑色‘}]},{attrid:2,name:‘内存容量‘,attr_values:[{v_id:3,v_name:‘16G‘},{v_id:4,v_name:‘32G‘}]},{attrid:3,name:‘网络类型‘,attr_values:[{v_id:5,v_name:‘移动‘},{v_id:6,v_name:‘联通‘}]}];
});
</script>

<p>使用 ng-model 指令来绑定输入域的值到控制器的属性。</p>

</body>
</html>

angular.js第二个项目 绑定

原文:http://www.cnblogs.com/westfruit/p/5210807.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!