我是Angular2的初学者。我有index.html文件,在索引文件中我有div元素,我想在组件(.ts)中得到这个div的id。
请帮助我,Thnaks。
答案 0 :(得分:1)
我会创建一个组件,然后将“div”标记放在组件的模板中。
@Component({
selector: 'some-component',
template: '<div [id]="divid'></div>'
})
export class SomeComponent {
divid: number;
}
div中“id”周围的括号基本上是从我的组件中提取该值。
然后,在index.html文件中,放置组件的标记名称
<some-component></some-component>