在Angular 9中,可以使用属性绑定和ViewChild来修改元素的属性值。以下是一个示例:
import { Component } from '@angular/core';
@Component({
selector: 'app-example',
templateUrl: './example.component.html',
styleUrls: ['./example.component.css']
})
export class ExampleComponent {
inputValue: string = "Initial value";
changeValue() {
this.inputValue = "Changed value";
}
}
Some text
import { Component, ViewChild, ElementRef } from '@angular/core';
@Component({
selector: 'app-example',
templateUrl: './example.component.html',
styleUrls: ['./example.component.css']
})
export class ExampleComponent {
@ViewChild('myElement', {static: false}) myElement: ElementRef;
changeColor() {
this.myElement.nativeElement.style.backgroundColor = 'red';
}
}
在上面的示例中,使用ViewChild装饰器来获取名为"myElement"的模板引用变量,并在changeColor()方法中修改其背景颜色。
以上是在Angular 9中修改元素属性值的两种常见方法,可以根据具体需求选择适合的方法来实现。