var size = attrs['size'];
size = size == null ? '24pt' : size;
var color = attrs['color'];
color = color == null ? 'red' : color;
var txt = element[0].textContent;
element[0].innerHTML = tag;
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
var myapp = angular.module('myapp',[]); myapp.directive('ok', function(){ return function(scope,element,attrs){ var size = attrs['size']; size = size == null ? '24pt' : size; var color = attrs['color']; color = color == null ? 'red' : color; var txt = element[0].textContent; var tag = '<span style="font-size:' + size + ';color:' + color + ';">' + txt + '</span>'; element[0].innerHTML = tag; }; });
<< 前へ | 次へ >> |