想用ng 做一个轮播,可是在link 无法获取dom的元素
.directive("carousel",[function (){
return {
replace:true,
restrict:"EA",
scope:{
img:"=myImage"
},
transclude:true,
templateUrl:'../js/template.html',
link:function(scope,elem,attr){
var t=document.querySelectorAll(".carousel ul li");
console.log(t);
}
}
}]);
<p class="carousel">
<ul>
<li ng-repeat="i in img">
<img width="100%" height="100%" src="{{i.img}}" alt=""/>
</li>
</ul>
</p>
link不是应该在渲染完后加载的吗?为什么显示 空呢??求教
巴扎黑2017-05-15 17:07:01
$element는 jqlite 객체이므로 그냥 사용하세요.
사례, 회사 인턴 실습 사례
https://github.com/ShuyunXIAN...