我正在尝试使用scroll-snap-type
函数从JavaScript访问getComputedStyle()
。但是,它总是返回none
。通过打印getComputedStyle(element)
,我发现了279个可以访问的值,其中没有一个是scroll-snap-type
。但是,我可以看到它仍然以正确的值打印出来。有什么方法可以访问该值?
代码:
// This prints none
console.log(getComputedStyle(document.getElementById('horizontal-scroll-wrapper')).getPropertyValue('scrollSnapType');
// This is what you see printed below
console.log(getComputedStyle(document.getElementById('horizontal-scroll-wrapper'))