Home >Web Front-end >HTML Tutorial >Repeat HTML elements

Repeat HTML elements

高洛峰
高洛峰Original
2017-02-13 15:21:421964browse

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<title></title>
	<link rel="stylesheet" href="">
</head>
<body>
	<div ng-app="" ng-init="names=[&#39;Jani&#39;,&#39;Hege&#39;,&#39;Kai&#39;]">
		<p>使用ng-repeat来循环数组</p>
		<ul>
			<li ng-repeat="name in names">
				{{name}}
			</li>
		</ul>
	</div>
</body>
<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>
</html>

For more articles related to repeated HTML elements, please pay attention to the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn