import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-scrollspy-demo', templateUrl: './scrollspy-demo.component.html', styleUrls: ['./scrollspy-demo.component.scss'] }) export class ScrollspyDemoComponent implements OnInit { monitors = [ { 'id':'basicMessage', 'title':'基本信息基本信息' }, { 'id':'billsMessage', 'title':'单据信息' }, { 'id':'businessDetail', 'title':'业务明细' }, { 'id':'accessoryMessage', 'title':'附件信息' } ] private show = false; private currentSection: string = 'basicMessage'; constructor() { } ngOnInit() {} //监听currentSection变化 scrollSectionChange(sectionId:string){ //console.log(111); this.currentSection = sectionId; } }