首页 > Web开发 > 详细

angularjs1- ng-include

时间:2017-07-23 18:49:39      阅读:223      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <script type="text/javascript" src="../angular.min.js"></script>
    <style>
        .red{ background:red;}
        .yellow{ background:yellow;}
    </style>
</head>
<body>
<div ng-app="myApp">
    <div ng-controller="firstController">
        <div ng-bind="text"></div>
         <div ng-include="url"></div>
    </div>
</div>
<script type="text/javascript">
    var app = angular.module(myApp,[]);
    app.controller(firstController,[$scope,$interval,function($scope,$interval){
        //$scope.text = ‘<h1>hello</h1>‘;
        $scope.text = hello;
        $scope.url = test.html;
    }]);
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <script type="text/javascript" src="../angular.min.js"></script>
    <style>
        .red{ background:red;}
        .yellow{ background:yellow;}
    </style>
</head>
<body>
<div ng-app="myApp">
    <div ng-controller="firstController">
        <div ng-bind="text"></div>
          <div ng-include="url"></div>
          <div ng-include="tpl"></div>
         <div ng-include src="tpl2"></div>
    </div>
    //以script方式引入模版
    <script type="text/ng-template" id="tpl.html">
        Content of the template.111111111111
    </script>
    <script type="text/ng-template" id="tpl2.html">
        Content of the template.2222222222
    </script>
</div>
<script type="text/javascript">
    var app = angular.module(myApp,[]);
    app.controller(firstController,[$scope,$interval,function($scope,$interval){
        //$scope.text = ‘<h1>hello</h1>‘;
        $scope.text = hello;

        $scope.url = test.html;

        $scope.tpl = tpl.html;
        $scope.tpl2 = tpl2.html;

    }]);
</script>

</body>
</html>

 

angularjs1- ng-include

原文:http://www.cnblogs.com/yaowen/p/7225580.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!