gpt4 book ai didi

javascript - 单击按钮时我没有得到输出

转载 作者:行者123 更新时间:2023-12-02 21:00:52 25 4
gpt4 key购买 nike

我知道如何用纯 javascript 编写此代码,但我对 Angular 很陌生..单击提交时我没有得到任何结果..

index.html

<input type="text"   ng-model="username" placeholder="Username">
<input type="password" ng-model="password" placeholder="Password">
<ion-button expand="block" name="submit" (click)="login()">Login</ion-button>

索引.ts

    export class LoginPage implements OnInit {
username;
password;

login() {
if(this.username == "admin" && this.password == "admin") {
alert("helow")
}
}

最佳答案

使用 [(ngModel)] 更改 ng-model

<input type="text" [(ngModel)]="username" placeholder="Username">
<input type="password" [(ngModel)]="password" placeholder="Password">
<ion-button expand="block" name="submit" (click)="login()">Login</ion-button>

关于javascript - 单击按钮时我没有得到输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61359894/

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