AngularJs directive-transclude

前端之家收集整理的这篇文章主要介绍了AngularJs directive-transclude前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

猜你在找的Angularjs相关文章