gpt4 book ai didi

javascript - 访问 Ionic 2 DOM 元素的样式

转载 作者:太空狗 更新时间:2023-10-29 15:34:03 25 4
gpt4 key购买 nike

我正在尝试使用以下内容访问我的其中一个页面的 DOM 元素:

 ionViewDidEnter() {

this.platform.ready().then(() => {

let elm = <HTMLElement>document.querySelector("ion-navbar.toolbar.toolbar-ios.statusbar-padding");
console.log(elm.style);
})
}

但是,这个元素似乎没有样式 - 我尝试了各种组合来访问它,但没有成功。

具体来说,我正在寻找 ion-navbar 的高度。这可能吗?

最佳答案

你可以通过 element.offsetHeight 获取元素的实际高度.

至于样式属性,它只会为您提供元素的内联样式属性中定义的属性(例如 <div style="height: 20px;">...</div> ),而不是 CSS 使用选择器规则应用的属性。参见 this MDN article了解更多详情。

关于javascript - 访问 Ionic 2 DOM 元素的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46720669/

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