在Angular 6中,要在下一个div上添加类,比如accordion,可以通过以下步骤实现:
<div #nextDiv></div>
import { Component, ViewChild, AfterViewInit } from '@angular/core';
@Component({
selector: 'app-your-component',
templateUrl: './your-component.component.html',
styleUrls: ['./your-component.component.css']
})
export class YourComponent implements AfterViewInit {
@ViewChild('nextDiv') nextDiv: ElementRef;
ngAfterViewInit() {
this.nextDiv.nativeElement.classList.add('accordion');
}
}
.accordion {
/* 添加你的样式 */
}
这样,当组件渲染完成后,下一个div元素就会被添加上accordion类,从而实现了在Angular 6中的下一个div上添加类的目的。
关于Angular 6的更多信息和学习资源,你可以参考腾讯云的Angular产品介绍页面:Angular - 腾讯云。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云