angularjs写自己的指令编译器

前端之家收集整理的这篇文章主要介绍了angularjs写自己的指令编译器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
var app = angular.module('plunker',['ngSanitize']);

app.directive('toHtml',function() {
  return {
    restrict: 'A',link: function (scope,el,attrs) {
			el.html(scope.$eval(attrs.toHtml));
    }
  };
});

使用方法:
<p to-html="name"></p>
原文链接:https://www.f2er.com/angularjs/145862.html

猜你在找的Angularjs相关文章