Home > Web Front-end > JS Tutorial > body text

AngularJS dynamically generates the ID of the div

黄舟
Release: 2017-03-25 16:12:04
Original
1589 people have browsed it

1. Problem background

Given an array object, which contains the id of p; loop to generate p elements and assign values ​​to the id

2. Implementation source code

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>AngularJS动态生成p的ID</title>
		<script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
		<script>
			var app = angular.module("idApp",[]);
			app.controller("idCon",function($scope){
				$scope.pIds = [
					{pId:"chartId1"},
					{pId:"chartId2"},
					{pId:"chartId3"},
					{pId:"chartId4"},
					{pId:"chartId5"}
				];
			});
		</script>
	</head>
	<body ng-app="idApp" ng-controller="idCon">
		<p ng-repeat="chart in pIds">
			<p id="{{chart.pId}}">{{chart.pId}}</p>
		</p>
	</body>
</html>
Copy after login

3. Implementation result

<html><head><style type="text/css">@charset "UTF-8";
[ng\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],
.ng-cloak,
.x-ng-cloak,
.ng-hide:not(.ng-hide-animate){
display:none !important;}ng\:form{display:block;}
.ng-animate-shim{visibility:hidden;}
.ng-anchor{position:absolute;}</style>
		<meta charset="UTF-8">
		<title>angularJS动态生成p的ID</title>
		<script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
		<script>
			var app = angular.module("idApp",[]);
			app.controller("idCon",function($scope){
				$scope.pIds = [
					{pId:"chartId1"},
					{pId:"chartId2"},
					{pId:"chartId3"},
					{pId:"chartId4"},
					{pId:"chartId5"}
				];
			});
		</script>
	</head>
	<body ng-controller="idCon" ng-app="idApp" class="ng-scope">
		<!-- ngRepeat: chart in pIds --><p ng-repeat="chart in pIds" class="ng-scope">
			<p id="chartId1" class="ng-binding">chartId1</p>
		</p><!-- end ngRepeat: chart in pIds --><p ng-repeat="chart in pIds" class="ng-scope">
			<p id="chartId2" class="ng-binding">chartId2</p>
		</p><!-- end ngRepeat: chart in pIds --><p ng-repeat="chart in pIds" class="ng-scope">
			<p id="chartId3" class="ng-binding">chartId3</p>
		</p><!-- end ngRepeat: chart in pIds --><p ng-repeat="chart in pIds" class="ng-scope">
			<p id="chartId4" class="ng-binding">chartId4</p>
		</p><!-- end ngRepeat: chart in pIds --><p ng-repeat="chart in pIds" class="ng-scope">
			<p id="chartId5" class="ng-binding">chartId5</p>
		</p><!-- end ngRepeat: chart in pIds -->
	

</body></html>
Copy after login

AngularJS dynamically generates the ID of the div

The above is the content of the ID of p dynamically generated by AngularJS. For more related content, please pay attention to the PHP Chinese website (m.sbmmt.com)!

Related articles:

AngularJS implements the method of dynamic compilation and adding to dom

AngularJs dynamic loading of modules and dependencies

AngularJS implements the method of binding events to dynamically generated elements

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!