自动对焦是否适用于html span标记?

时间:2017-03-07 00:19:46

标签: html html5 angular

如何在html span标签上启用自动对焦?我尝试使用.focus()使其工作而不是自动聚焦属性,但这也不起作用。

<span class="newCheckbox"  tabindex="0"  #compareSpan (load)="compareSpan.focus()">

1 个答案:

答案 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 
    }