标签:logs lan images htm alt 服务器 hello ict dir
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> </head> <body> <div ng-app="myApp"> <script type="text/ng-template" id="customTags2"> <div> hello {{name}} </div> </script> <div ng-controller="firstController"> <custom-tags></custom-tags> <custom-tags2></custom-tags2> </div> </div> <script type="text/javascript" src="../../vendor/angular/angularjs.js"></script> <script type="text/javascript" src="app/index.js"></script> </body> </html>
<div>{{name}}</div>
var myApp = angular.module(‘myApp‘,[]) .directive(‘customTags‘,function () { return{ restrict: ‘ECAM‘, templateUrl:‘tmp/other.html‘, replace: true } }) .directive(‘customTags2‘,function () { return{ restrict: ‘ECAM‘, templateUrl:‘customTags2‘, replace: true } }) .controller(‘firstController‘,[‘$scope‘,function ($scope) { $scope.name = ‘Alrale‘; }]);
Angularjs[26] - 自定义指令(2)(templateUrl)
标签:logs lan images htm alt 服务器 hello ict dir
原文地址:http://www.cnblogs.com/bky-1083/p/6359086.html