如何在html span标签上启用自动对焦?我尝试使用.focus()使其工作而不是自动聚焦属性,但这也不起作用。
<span class="newCheckbox" tabindex="0" #compareSpan (load)="compareSpan.focus()">
答案 0 :(得分:1)
尝试这样的事情:
//component
import { ViewChild } from '@angular/core'; //import ViewChild if not already done
@ViewChild('compareSpan') cs; //select your span
ngAfterViewInit() {
this.cs.nativeElement.focus(); //focus it at after view initialization
}