AngularJS 自定义指令
transclude:当元素标签需要嵌套时使用,与ng-transclude配合使用。默认值为false不能使用嵌套,true为可以使用嵌套。在哪个标签上使用ng-transclude就在哪个标签内进行嵌套。
代码示例:(将hello、hi标签进行替换同时span标签嵌套div内)
hello angular
'
};
});
m.directive('hi',template:'hi angular'
};
});
m.controller('Aaa',['$scope',function($scope){
$scope.name='hello';
}]);
<body ng-controller="Aaa">