问题标签 [ng-hide]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
angularjs - Angular JS 使用带有功能的 NG-Hide
我尝试创建一个显示或隐藏 Div 的 Angular JS 函数,以防满足特定要求。我现在确实有问题,该函数没有正确调用,并且两个 div 要么可见要么不可见(在测试用例中,应该显示 div 1 而不显示 div 2)。
在 html 文件中,我尝试使用以下参数隐藏 Div
是在运行时{{profile.parameterA.length}}
传递给函数还是存储在这个变量中的实际值?(它是 1arrayA
和 0 ArrayB
)
angularjs - AngularJS ng-hide 不能使用 html 绑定到 div
我正在尝试从控制器呈现 html 内容,但是 angular 指令 ng-hide 不起作用,我尝试了以下代码,以这种方式绑定为 html 是否有问题?
angularjs - 控制器异步功能解析时如何显示、隐藏或更改元素属性?
我有一些 html 元素,它们被隐藏使用ng-hide
在控制器中我有一个异步功能,当它解决时我想显示这些链接
这个想法是当isLoggedin()
返回 true 时,ng-show
也将设置为 true。
我没有设置 using ng-show="isLoggedin()"
,可能是其他解决方案,只要它使用:
我可以设置一些id's
并抓取元素并更改控制器中的类,但我在想是否有办法观察解析并让元素知道显示
有任何想法吗?
javascript - ng-hide & ng-show in AngularJS
Using AngularJS I want to show and hide the data related with particular id in the toggle way.
My JSON Data format is like:
What I want is when click on id-1 It will show text One and Hide the others, when click on id-2 will show text Two and hide others and so on.
Here is the fiddle what I tried : jsfiddle : Demo Link
angularjs - 表单有效时如何隐藏 div?
如果第一种形式有效,我会在第二种形式和第三种形式中隐藏一个 div。这个想法是,当您单击提交按钮时,如果这是有效的,则隐藏此元素。
我还不太清楚这些情况下 Angular 的逻辑是如何工作的,如果有人可以给我一个想法,我将不胜感激。
以我的代码为例:
angularjs - ng-show 和 ng-hide 与 jwt
我正在使用 JWT 管理身份验证。我正在尝试使用 ng-hide 和 ng-show 在我的导航中显示/隐藏登录和注销按钮。它不工作。令牌正在存储,但我无法让显示/隐藏工作。
服务:
控制器:
html:
angularjs - ng-click angularjs 上的多个功能
我是 AngularJs 的新手,现在正在学习,在我目前的任务中,我需要在 ng-click 上实现多项目标。
基于 ng-click 隐藏和显示一些 DOM 元素
更改应用 ng-click 的元素的背景,我正在尝试使用指令来实现这一点。
加价:
角度指令
问题:
我无法看到正在应用的指令,即,当我单击选择一种类型时,它会隐藏并显示其他两个 div,但不会改变背景。
angularjs - 在单页应用程序中使用 $rootScope 的 ngHide/ngShow
再次向大家寻求 AngularJS 的帮助。我正在构建一个 SPA,其中我的布局(主)页面分为三个部分,左侧导航栏、中心内容、右侧项目列表栏。当我加载我的主页时,我的正确项目列表应该被隐藏,但应该在其余屏幕中可见。我在 homeController 中创建了一个 $rootScope 变量,并根据位置路径将值设置为“true”,并在模板中使用该变量将值设置为 ngHide。当我在使用 SPA 时导航到不同的页面时,我的左右栏不会再次加载,只有我的中心内容才会加载,这是一个新视图。在将数据发送到新视图模板的控制器中加载新视图时,我将在 homeController 中创建的 $rootScope 变量重置为' false',但我的右栏仍然不可见。我可以看到 ng-hidden 类仍在运行,尽管 interpollation 已将值更新为“true”。任何建议将不胜感激。
来自布局页面的标记:
家庭控制器代码:
类别控制器代码:这是我重置 $rootScope 变量值的地方
javascript - 如何从控制器内部手动隐藏某些东西?
http://plnkr.co/edit/ps8TCpQ8znYQnOExO7Er
我有一个简单的应用程序,其中有一个头像图像和一个菜单。当您单击我使用的 Avatar 图像ng-click
,ng-class
并ng-show
为菜单显示和隐藏设置动画。
现在可以了,单击头像会打开和关闭菜单。但是,我还希望用户能够单击body
或上的其他任何位置#wrapper
,如果菜单打开,则关闭菜单,但如果用户单击菜单内的任何位置,则不能关闭菜单。
我在控制器中添加了一些逻辑来检测菜单是否打开以及用户是否在菜单内部或外部单击。不知道如何在 Angular 中执行此操作,因此在此处使用原始 Javascript:
^ 目前确实检测到我是在菜单外部还是内部单击,但我不知道如果菜单打开并且我在外部单击,那么如何强制菜单淡出。尝试了被注释掉但出错的那一行。
你们Angularians会如何做到这一点?
javascript - how can I use ng-if based on url in the index.html page?
I want to use ng-hide in the index page if the url in some nested views. in my index.html, I want something like:
I want that when I enter to "home" view the bars will disappeared. as I saw here in same questions - the answer was to use $location in the controller, but where is the controller of the index page?
thanks