我有;

<div class="exampleDiv">
    <element1></element1>
    <element2></element2>
    <element3></element3>
</div>


然后一些使用last:child选择器的CSS(仅margin-right:0 FYI)。但是,我在元素1-3上使用了条件ng-hide,因此,如果element3被隐藏,则last:child CSS不会移到element2,因为从技术上讲,它是在DOM中呈现的,然后被隐藏了。

所以我想知道是否有一种方法可以使用ng-hide并具有类似“ last-visible-element”选择器的功能。这样,当ng-hide起作用时,用户可以看到的最后一个元素已应用此CSS?

感谢您的任何帮助!

最佳答案

是您要查找的remove(),因为它确实从dom树中删除了元素:



var myApp = angular.module("myApp", []);
 myApp.controller("myController", function($scope) {
 $scope.removeElement = function() {
	 var elmn = angular.element( document.querySelector( '.test :last-child' ) );
     elmn.remove();
 };
});

.test {
  display: flex;
  justify-content: space-between;
}

.test div {
  border: solid;
  min-width: 5em;
}

.test :last-child {
  color: red;
}
.test :last-child:before {
 content:"actual last-child ";
 color:green;
}

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div ng-app="myApp">
  <p>each time you click, last element is removed</p>
  <div ng-controller="myController" class="test">
    <input type="button" value="Remove Div " ng-click="removeElement()">
    <div>1</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>last-child</div>
  </div>
</div>





http://codepen.io/gc-nomade/pen/KmvKdV

关于html - Ng-hide和last:child CSS,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43756579/

10-13 06:39