我想選擇父角色(searchres)並獲得樣式,但我無法做到! 我的HTML是這樣的:以角度選擇父元素
<div ng-repeat="product in products" class="searchres">
<a href="#">
<img src="{{product.path}}" class="img-thumbnail" alt="{{product.name)}}" />
{{product.name}}
</a>
</div>
而且我的代碼是這樣的:
$.each($scope.products, function(index, value) {
var namePro = value.name;
if (namePro.length <= 32) {
$("body").find(".searchres").css("line-height","50px!important");// is wrong !
value.parentNode.css("line-height","50px!important"); // is wrong !
}
});
我應該爲這個問題呢?
你想要什麼,爲什麼不使用NG式 –
我用NG-風格:NG-風格=「product.name.length <= 32 { '的line-height':「50像素!重要的'}:{}「。但它不適合我! –