返回到:AngularJS 实例列表
使用 ng-repeat 指令(带有数组),看下这个实例,代码:
<!DOCTYPE html> <html> <head> <title>AngularJS 实例 | Web176教程网web176.com</title> <meta charset="utf-8"> <script src="https://cdn.staticfile.org/angular.js/1.4.6/angular.min.js"></script> </head> <body> <div data-ng-app="" data-ng-init="names=['Jani','Hege','Kai']"> <p>使用 ng-repeat 来循环数组</p> <ul> <li data-ng-repeat="x in names"> {{ x }} </li> </ul> </div> </body> </html>
预览看看效果。
作者:terry,如若转载,请注明出处:https://www.web176.com/angularjsex/6655.html