admin管理员组文章数量:1343374
I was trying to show and hide an element child, so when I hover over a <li>
element, I set up a ng-show
with value false
for all the elements. If I try to make the value true
to show, it shows me all the child elements. I just want to display for each element hovered its child:
HTML CODE:
<ul ng-init="show=false">
<li>
<a class="list-group-menu" href="#"><div class="icon-user"></div></a>
<div ng-show="show"> Profile </div>
</li>
<li>
<a class="list-group-menu" href="#"><div class="icon-scope"></div></a>
<div ng-show="show"> Scope </div>
</li>
<li>
<a class="list-group-menu" href="#"><div class="icon-job"></div></a>
<div ng-show="show"> Job </div>
</li>
<li>
<a class="list-group-menu" href="#"><div class="icon-login"></div>
<div ng-show="show"> Login </div>
</a>
</li>
<li>
<a class="list-group-menu" href="#"><div class="icon-register"></div></a>
<div ng-show="show"> Register </div>
</li>
</ul>
JQUERY CODE:
$('ul li').mouseenter(function() {
$(this).children('div').show();
});
$('ul li').mouseleave(function() {
$(this).children('div').hide();
});
I was trying to show and hide an element child, so when I hover over a <li>
element, I set up a ng-show
with value false
for all the elements. If I try to make the value true
to show, it shows me all the child elements. I just want to display for each element hovered its child:
HTML CODE:
<ul ng-init="show=false">
<li>
<a class="list-group-menu" href="#"><div class="icon-user"></div></a>
<div ng-show="show"> Profile </div>
</li>
<li>
<a class="list-group-menu" href="#"><div class="icon-scope"></div></a>
<div ng-show="show"> Scope </div>
</li>
<li>
<a class="list-group-menu" href="#"><div class="icon-job"></div></a>
<div ng-show="show"> Job </div>
</li>
<li>
<a class="list-group-menu" href="#"><div class="icon-login"></div>
<div ng-show="show"> Login </div>
</a>
</li>
<li>
<a class="list-group-menu" href="#"><div class="icon-register"></div></a>
<div ng-show="show"> Register </div>
</li>
</ul>
JQUERY CODE:
$('ul li').mouseenter(function() {
$(this).children('div').show();
});
$('ul li').mouseleave(function() {
$(this).children('div').hide();
});
Share
Improve this question
edited Feb 18, 2014 at 14:32
Extra Savoir-Faire
6,0364 gold badges31 silver badges48 bronze badges
asked Feb 18, 2014 at 14:01
Fabrizio FenoglioFabrizio Fenoglio
5,95714 gold badges41 silver badges78 bronze badges
3 Answers
Reset to default 5This is not an angular way. You should do like this.
JS
angular.module("firstApp").controller("myCtrl",function($scope) {
$scope.allMenu = ["Profile","Scope","Job","Login","Register"];
});
HTML
<ul ng-controller="myCtrl">
<li ng-repeat="menuName in allMenu" ng-mouseenter="show=true" ng-mouseleave="show=false">
<a class="list-group-menu" href="#"><div class="icon-user"></div></a>
<div ng-show="show"> {{menuName}} </div>
</li>
</ul>
You don't need any javascript here at all. This is pure CSS task:
.menu .list-group-menu + div {
display: none;
}
.menu .list-group-menu:hover + div {
display: block;
}
for HTML:
<ul class="menu">
<li>
<a class="list-group-menu" href="#">
<div class="icon icon-user">User</div>
</a>
<div>Profile</div>
</li>
<li>
<a class="list-group-menu" href="#">
<div class="icon icon-scope">Scope</div>
</a>
<div>Scope</div>
</li>
...
You are binding all of the elements to the "show" variable, so when you flip it to true, all elements will show. If you want to use ng-show for that purpose, use an array of objects containing all of the data for the template and an ng-repeat. That will not only solve your problem but also DRY your template. I would slso suggest you look into $element so that you can stick to the angular environment and syntax instead of also having to use jquery.
本文标签: javascriptShowHide elements with AngularJsStack Overflow
版权声明:本文标题:javascript - ShowHide elements with AngularJs - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743693916a2523174.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论