我有一個網站,如下圖所示相同的高度,使所有的div使用指令
電網有沒有妥善安排。
當我在控制檯執行以下代碼時,它正確地形成了網格。
var maxHeight = Math.max.apply(null, $("#activityfeeddetails").find(".course_thumb_outer").map(function(){
return $(this).height();
}).get());
$("#activityfeeddetails").find(".course_thumb_outer").css("height",maxHeight);
屏幕執行的代碼之後:
問:我如何添加該代碼在角指令,這樣一旦所有的數據和模板被加載時執行。
編輯:這裏是當前指令(不正常),
dwmProfileDirectives.directive('profileActivityFeedTab', ['Activityfeed', function(Activityfeed) {
return {
restrict: 'E',
scope: {
current:'=current'
},
templateUrl:'tabs/dwm-profile-activity-feed.html',
controller: function($scope) {
$scope.Activityfeeds = Activityfeed.get();
$scope.Activityfeeds.$get().then(function(v){
var maxHeight = Math.max.apply(null, angular.element("#activityfeeddetails").find(".course_thumb_outer").map(function(){
return $(this).height();
}).get());
angular.element("#activityfeeddetails").find(".course_thumb_outer").css("height",maxHeight);
});
}
};
}]);
使用同一高度的柔性屬性 –