合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
结果:<span style="color:red">333</span> ~~~ <body ng-app="model"> <div ng-controller="a"> <div i-yyan color="red">333</div> </div> </body> ~~~ ~~~ var a = angular.module('model', []); a.directive('iYyan', function () { return { restrict: 'AEC',//a Attr标签,E Element元素,c Class样式 template: function (elem,attr) { return "<span style='color:"+attr['color']+"'>"+elem.html()+"</span>"; } } }); ~~~