作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在 AngularJS2 中编写登录表单,当用户或密码返回 false 时,我希望光标聚焦用户名输入。我该怎么做?
<input type="text" class="form-control" #inputUsername placeholder="Username" autofocus ngControl="username" [(ngModel)]="username">
<input type="password" class="form-control" #inputPassword placeholder="Password" ngControl="password" [(ngModel)]="password">
this.loginService.getAuth(username, password)
.subscribe(auth => {
if (auth == true) {
????
} else {
????
}
});
最佳答案
使用 https://stackoverflow.com/a/34573219/217408 中解释的指令并稍微修改一下:
@Directive({
selector : '[focusable]'
})
class Focusable {
constructor(public renderer: Renderer, public elementRef: ElementRef) {}
focus() {
this.renderer.invokeElementMethod(
this.elementRef.nativeElement, 'focus', []);
}
}
然后像这样使用它
<input focusable type="text" class="form-control" #inputUsername placeholder="Username" autofocus ngControl="username" [(ngModel)]="username">
<input type="password" class="form-control" #inputPassword placeholder="Password" ngControl="password" [(ngModel)]="password">
不要忘记将它添加到`directives: [Focusable]
您可以像这样查询该指令
@ViewChild(Focusable) focusable:Focusable;
...
if(auth == true) {
...
} else {
this.focusable.focus();
}
关于javascript - AngularJS2 : How to focus input like document. getElementById(..).focus 在 javascript 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37693091/
我是一名优秀的程序员,十分优秀!