gpt4 book ai didi

javascript - 访问指令中的元素 "computed style"

转载 作者:行者123 更新时间:2023-12-03 00:12:25 25 4
gpt4 key购买 nike

我为这个加载程序制定了指令。我想做类似下面的事情,但所有样式都未定义。有没有办法访问指令中元素的“计算样式”?

export const ElementLoader = {
componentUpdated(el, binding) {
if (binding.value.isLoading) {
if (el.style.position !== '' || el.style.position !== 'static') {
el.style.position = 'relative'
}

el.classList.add('is-loading')
} else {
el.classList.remove('is-loading')
}
}
}

最佳答案

Vue.js 没有为此提供任何现成的东西。您必须使用核心 JavaScript API为此:

componentUpdated(el, binding) {
const styleObj = window.getComputedStyle(el);
// Other code...
}

关于javascript - 访问指令中的元素 "computed style",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54670799/

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