如何检查子元素是否上课?

时间:2019-04-25 15:04:40

标签: angular

我在Angular中使用ElementRef来获取DOM元素:

private el: ElementRef;

this.el.nativeElement.children[0];

如何检查元素this.el.nativeElement.children[0]是否具有特定的类?

1 个答案:

答案 0 :(得分:1)

如果它是特定的类并且您知道它,则可以使用 instanceof 。喜欢:

console.log(this.el.nativeElement.children[0] instanceof ClassName);

它会根据结果打印true或false。