Angular数据绑定

2020-03-12  本文已影响0人  五月烧

😁先上例子。

  1. 插值表达式 : <h1>{{title}}</h1>
  2. 属性 : <img [src]="imgUrl">
  3. 事件 : <button (click)="handleClick()">点击一下</button>
【HTML attribute & DOM property, 关于attribute和property的翻译,这里不做争执😊】   
HTML特性是不变的,HTML特性指定初始值,初始化DOM属性  
DOM属性是变的,表示当前值  
```ts
doOnInput(event:any){
    console.log(event.target.value); // DOM属性
    console.log(event.target.getAttribute('value')); // HTML特性
}
```
<input [(ngModel)]="name"/>
{{name}}
// ❗注意:ngModel 需要依赖FormsModule模块
import { FormsModule } from '@angular/forms';
...
     imports:[
         ...
         FormsModule,
         ...
     ]
...

⬆⬆⬆

上一篇下一篇

猜你喜欢

热点阅读