dropdown-menu一单击就会消失,不能实现输入等操作,需要为dropdown-menu进行控制,下面的stop方法实现了dropdown-menu单击不消失的效果,很方便。
<ul class="dropdown-menu canvaslist pull-right" ng-click="stop()" id={{ parentUl }} >//调用stop()
$scope.stop=function(){
event.stopPropagation();
};
调整菜单位置
可以向.dropdown-menu添加.pull-right或.pull-left控制菜单位置。
[html]
<ul class="dropdown-menu pull-right" role="menu" aria-labelledby="dLabel">
<ul class="dropdown-menu canvaslist pull-right" ng-click="stop()" id={{ parentUl }} >//调用stop()
$scope.stop=function(){
event.stopPropagation();
};
调整菜单位置
可以向.dropdown-menu添加.pull-right或.pull-left控制菜单位置。
[html]
<ul class="dropdown-menu pull-right" role="menu" aria-labelledby="dLabel">