我有一些HTML
<div ng-style="multiStyle(row)" ng-repeat="row in search_result | filter:cacheTemplate track by $index">
事先我不知道这个div的高度。它可能是60px或80px,具体取决于屏幕。是否可以将此div的函数mutliStyle(row,height)高度作为参数发送?或者发送到这个函数这个div所以在我的函数中我可以得到这个高度?
答案 0 :(得分:0)
你为什么不用css?
您可以简单地编写像这样的媒体查询
% extracting SURF features
points1 = detectSURFFeatures(img1_resized);
points2 = detectSURFFeatures(img2_resized);
% plotting SURF Features
figure(2);
subplot(1, 2, 1);
imshow(img1_resized);
hold on;
plot(points1.selectStrongest(20));
hold off;
subplot(1, 2, 2);
imshow(img2_resized);
hold on;
plot(points2.selectStrongest(20));
hold off;
此处描述了另一种解决方案: How to access to the current element with ng-style