0
因此,在此示例中,ng-hide不會隱藏該元素。爲什麼以及如何解決這個問題?指令中的重新連接指令
<div ng-app='myApp'>
<input type='text' foo/>
</div>
angular.module('myApp',[])
.directive('foo',function(){
return{
link:function(scope,element,attrs){
element.after('<div style="width:200px; height:200px;'
+' background-color:red" ng-hide="true"></div>')
}
}
});
使用'$ compile'服務,以便指令和綁定被逮住。 – 2013-04-09 21:37:45