gpt4 book ai didi

styles - 如何通过 typescript 类(angular2)更改主体类

转载 作者:太空狗 更新时间:2023-10-29 16:52:55 26 4
gpt4 key购买 nike

如何通过根组件更改主体类?

@Component({ 
selector: "app",
directives: [ROUTER_DIRECTIVES],
template: `
<section class="header">
<h1>App</h1>
<router-outlet></router-outlet> `
})

最佳答案

在这里您可以简单地使用 Angular2 组件中的原生 JavaScript 来更改 <body> 的类标签:-

let body = document.getElementsByTagName('body')[0];
body.classList.remove("className"); //remove the class
body.classList.add("className"); //add the class

关于styles - 如何通过 typescript 类(angular2)更改主体类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34636661/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com