我看过这个,但它不起作用——可能是因为我的目标元素是在自定义组件 ( <c-tabs>
) 中动态生成的。
我也看过这个,但我认为这不起作用,因为我无法触摸自定义组件的代码。
HTML
<c-tabs #mainComponentTabs1 [items]="tabItems"></c-tabs>
我尝试了以下方法来定位它。没有工作。
方法 1. 使用普通的旧 Javascript:
ngAfterViewInit() {
let att = document.createAttribute("id");
att.value = "yada1";
document.querySelectorAll(".c-tabs .hydrated")[0].setAttributeNode(att);
}
我试图在 ngOnInit 和 ngOnViewInit 方法中使用上述内容,但这没有帮助。 奇怪的是,这种方法在页面呈现后在 Chrome 控制台窗口中起作用。即,querySelected 项获取 id 属性。
方法2。使用 Angular 的 Renderer2。(诚然,我不知道如何获取需要 id 的特定原生元素。
//first, declare target custom component element with viewchild:
export class MainComponent implements OnInit, AfterViewChecked, AfterViewInit {
@ViewChild('mainComponentTabs1', { static: true }) c_tabs1: ElementRef;
...
ngAfterViewChecked() {
//neither of these approaches works.
const c_tabs1El = this.c_tabs1.nativeElement;
this.renderer.setAttribute(c_tabs1El.items[0], 'id', 'dashboard-tab-link-search');
const c_tabs1El2 = document.querySelectorAll("button.c-item");
this.renderer.setAttribute(c_tabs1El2[0].nativeElement, 'id', 'dashboard-tab-link-dashboard');
}
...
}