transclude制定是否复用标签内部的html
制定方式是将当前标签内部内容,复制一份到template中制定 ng-transclude的元素内部
1.代码:
<body ng-app="myApp"> <my-site> <p class="text-danger">原始的内容</p> </my-site> </body>
//transclude 是否复制原来控件内容,到 ng-transclude 的元素内部 var app = angular.module('myApp',[]); app.directive('mySite',function () { return { restrict: 'E',template: '<strong>重点内容</strong><div ng-transclude></div>',transclude: true }; });
原文链接:https://www.f2er.com/angularjs/149390.html