我有一个具有不同内容的 ng-switch,其中一个是 Gallery,我必须在 switch ng-switch-when=gallery 内容准备好后将 JQuery 事件设置为所有图像,但并不幸运,因为它在内容已加载。
画廊是第三个 ng-switch-when 所以我不能用 ng-init 设置事件。
那么,ng-switch 是否有内容加载事件或指令?
<a href="" ng-click="menuSelection='gallery';loadLibraryGallery();">GALERÍA</a>
控制器
$scope.loadLibraryGallery = function(){
//I have to set this event to childrens after ng-switch-when=gallery is loaded
$('.popup-gallery').magnificPopup();
};
任何想法。求求你了,谢谢你。