要判断Angular Material标签页是否激活,你可以使用MatTabGroup组件的selectedIndex属性来判断当前激活的标签页索引。下面是一个包含代码示例的解决方法:
Tab 1 content
Tab 2 content
Tab 3 content
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
selectedTabIndex = 0;
}
Tab 1 is active
Tab 1 is not active
通过这种方式,你可以根据标签页的激活状态来执行不同的逻辑。