【发布时间】:2018-06-26 04:53:08
【问题描述】:
想要在每个<td> 的文本末尾设置光标焦点
<table #sampleTable>
<th>name</th>
<th>number</th>
<tr>
<td #name contenteditable="true">
jack
</td>
<td #number contenteditable="true">
5487
</td>
</tr>
</table>
组件.ts
@ViewChild('name') colName;
...
ngAfterViewInit(){
setTimeout(() => {
this.colName.nativeElement.focus() //setting focus at name column
}, 1000);
}
但无法在文本末尾设置光标。任何人都可以在不使用 Jquery 的情况下以 angular 的方式帮助我。
【问题讨论】:
标签: javascript css html angular