我为emded标签创建了一个自定义指令以使用src。它适用于mozilla Firefox,但不适用于chrome。
app.directive('embedSrc', function () {
return {
restrict: 'A',
link: function(scope, element, attrs) {
scope.$watch(
function() {
return attrs.embedSrc;
},
function() {
element.attr('src', attrs.embedSrc);
}
);
}
};
});
请帮忙。
答案 0 :(得分:0)
使用
$compile(element.contents())(scope);
和
attrs.$observe('embedSrc', function (newValue) {
newValue === "true";
});