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 textarea 指令


示例

带有数据绑定的文本区域

<textarea ng-model="myTextarea"></textarea>

<p>文本区域字段的值为:</p>
<h1>{{myTextarea}}</h1>
自己试试 »

定义和用法

AngularJS 修改了 <textarea> 元素的默认行为,但前提是存在 ng-model 属性。

它们提供数据绑定,这意味着它们是 AngularJS 模型的一部分,可以在 AngularJS 函数和 DOM 中引用和更新。

它们提供验证。例如:带有 required 属性的 <textarea> 元素,只要为空,其 $valid 状态就会设置为 false

它们还提供状态控制。AngularJS 保存所有文本区域元素的当前状态。

文本区域字段具有以下状态

  • $untouched 字段尚未被触碰
  • $touched 字段已被触碰
  • $pristine 字段尚未被修改
  • $dirty 字段已被修改
  • $invalid 字段内容无效
  • $valid 字段内容有效

每个状态的值表示一个布尔值,要么是 true,要么是 false


语法

<textarea ng-model="name"></textarea>

可以通过使用 ng-model 属性的值来引用文本区域元素。



CSS 类

AngularJS 应用程序中的 <textarea> 元素会赋予某些。这些类可用于根据其状态设置文本区域元素的样式。

添加以下类

  • ng-untouched 字段尚未被触碰
  • ng-touched 字段已被触碰
  • ng-pristine 字段尚未被修改
  • ng-dirty 字段已被修改
  • ng-valid 字段内容有效
  • ng-invalid 字段内容无效
  • ng-valid-key 每个验证一个。例如:ng-valid-required,当需要验证多个内容时很有用
  • ng-invalid-key 例如:ng-invalid-required

如果它们所代表的值为 false,则会移除这些类。

示例

使用标准 CSS 为有效和无效的文本区域元素应用样式

<style>
textarea.ng-invalid {
    background-color: pink;
}
textarea.ng-valid {
    background-color: lightgreen;
}
</style>
自己试试 »

×

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.