This blog is part of 1 Tute Sets.
AngularJs Tutorial
Tute set by shristi.shandilya
14 Blogs-
Learn how we can repeat html element without using any conditional loop
over 8 years ago
over 8 years ago
Hii,
Learn how we can repeat html element without using any conditional loop by using AngularJs.
To repeat html elements using AngularJs we use ng-repeat which is a directive of AngularJs, ng-repeat directive is used to repeat an HTML element.
Go through this simple example to learn how we can use ng-repeat i.e an AngularJs directive
Example:In this example ng-app(To initialise an AngularJS application),ng-init(To initialise application data),ng-repeat(To repeat HTMl element) directives and an expression {{expression}} (to bind data to HTML) are used.
<div ng-app="" ng-init='week=["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]'>
<p>List of days in a week using ng-repeat directive</p>
<ul>
<li ng-repeat="days in week">
{{ days }}
</li>
</ul>
</div>
<div ng-app="" ng-init='week=["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]'>
<p>List of days in a week using ng-repeat directive</p>
<ul>
<li ng-repeat="days in week">
{{ days }}
</li>
</ul>
</div>
Output:
List of days in a week using ng-repeat directive
Note: Must include this link in your file
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
Can you help out the community by solving one of the following Javascript problems?
Do activity (Answer, Blog) > Earn Rep Points > Improve Rank > Get more opportunities to work and get paid!
For more topics, questions and answers, please visit the Tech Q&A page.
0 Comment(s)