Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

AngularJS HTML DOM


AngularJS 有指令可以将应用程序数据绑定到 HTML DOM 元素的属性。


ng-disabled 指令

ng-disabled 指令将 AngularJS 应用程序数据绑定到 HTML 元素的 disabled 属性。

AngularJS 示例

<div ng-app="" ng-init="mySwitch=true">

<p>
<button ng-disabled="mySwitch">点击我!</button>
</p>

<p>
<input type="checkbox" ng-model="mySwitch">按钮
</p>

<p>
{{ mySwitch }}
</p>

</div>
自己试试 »

应用说明

ng-disabled 指令将应用程序数据 mySwitch 绑定到 HTML 按钮的 disabled 属性。

ng-model 指令将 HTML 复选框元素的值绑定到 mySwitch 的值。

如果 mySwitch 的值计算结果为 true,则按钮将被禁用: 

<p>
<button disabled>点击我!</button>
</p>

如果 mySwitch 的值计算结果为 false,则按钮将不会被禁用: 

<p>
<button>点击我!</button>
</p>


ng-show 指令

ng-show 指令显示或隐藏 HTML 元素。

AngularJS 示例

<div ng-app="">

<p ng-show="true">我是可见的。</p>

<p ng-show="false">我是不可见的。</p>

</div>
自己试试 »

ng-show 指令根据 ng-show 的值显示(或隐藏)HTML 元素。

您可以使用任何计算结果为 true 或 false 的表达式

AngularJS 示例

<div ng-app="" ng-init="hour=13">

<p ng-show="hour > 12">我是可见的。</p>

</div>
自己试试 »

在下一章中,将提供更多示例,使用按钮点击来隐藏 HTML 元素。


ng-hide 指令

ng-hide 指令隐藏或显示 HTML 元素。

AngularJS 示例

<div ng-app="">

<p ng-hide="true">我是不可见的。</p>

<p ng-hide="false">我是可见的。</p>

</div>
自己试试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.