我在Angular中使用ElementRef来获取DOM元素:
private el: ElementRef;
this.el.nativeElement.children[0];
如何检查元素this.el.nativeElement.children[0]
是否具有特定的类?
答案 0 :(得分:1)
如果它是特定的类并且您知道它,则可以使用 instanceof 。喜欢:
console.log(this.el.nativeElement.children[0] instanceof ClassName);
它会根据结果打印true或false。