gpt4 book ai didi

html - 如何在点击时更改按钮标签?

转载 作者:搜寻专家 更新时间:2023-10-30 22:00:12 26 4
gpt4 key购买 nike

当我点击这个按钮时,我想要改变标签。 HTML:

<button pButton type="button" label="Edit" (click) = "foo()" style="width:auto"></button>

例如:之前 - “编辑”,点击,之后 - “保存”。

最佳答案

您可以简单地将它绑定(bind)到您的 <button> 中的组件变量标签。

<button pButton type="button" (click)="foo()"> style="width:auto">
{{myLabel}}
</button>

在你的组件类中:

@Component({
templateUrl:'./mytemplate'
})
export class MyComponent implements OnInit {
myLabel:string;

ngOnInit() {
this.myLabel = 'Edit';
}
foo() {
this.myLabel = 'Save';
}
}

这是一个有效的插件:https://plnkr.co/edit/8TOn8oN63pgJ7eA7h7tY?p=preview

关于html - 如何在点击时更改按钮标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45433924/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com