gpt4 book ai didi

javascript - CoffeeScript - 数组过滤不起作用

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

我试图获取一个仅包含具有背景图像属性的元素的数组,但是,我的代码无法正常工作,我不确定出了什么问题。

elements = document.getElementsByTagName("*")
[].filter.call elements, (el) =>
if el.currentStyle
return el.currentStyle['backgroundImage'] isnt 'none'
else if window.getComputedStyle
return document.defaultView.getComputedStyle(el,null).getPropertyValue('background-image') isnt 'none'

最佳答案

根据javascript documentation ,

The filter() method creates a new array with all elements that pass the test implemented by the provided function.

因此,您需要在使用之前存储过滤后的数组:

elements = document.getElementsByTagName("*")
filteredElements = [].filter.call elements, (el) =>
if el.currentStyle
return el.currentStyle['backgroundImage'] isnt 'none'
else if window.getComputedStyle
return document.defaultView.getComputedStyle(el,null).getPropertyValue('background-image') isnt 'none'

// filteredElements is your new array with the filtered elements.

关于javascript - CoffeeScript - 数组过滤不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23700293/

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