码迷,mamicode.com
首页 > Web开发 > 详细

AngularJS ng-include

时间:2015-06-03 19:46:24      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:html   web   js   include   angular   

index.html

<html lang="en" ng-app="single_view">
<head>
  <script src="../jslib/angular.js"></script>
  <script src="../jslib/angular-route.js"></script>
   <script src="app.js"></script>
</head>
<body>

	<h4>below is the a page informaiton</h4>
	<div ng-include="‘view/a.html‘"></div>


	<h4>below is the b page informaiton</h4>
	<div ng-include="‘view/b.html‘"></div>

</body>
</html>


app.js

angular.module(‘single_view‘, []);


view/a.html

A page ...


view/b.html

B page ...

:<div ng-include="view/b.html"></div> 要加单引号

AngularJS ng-include

标签:html   web   js   include   angular   

原文地址:http://antlove.blog.51cto.com/10057557/1658003

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!