📌  相关文章
📜  js 数组来自 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:12.753000             🧑  作者: Mango

代码示例3
// Create an array based on a property of DOM Elements
const images = document.getElementsByTagName('img');
const sources = Array.from(images, image => image.src);
const insecureSources = sources.filter(link => link.startsWith('http://'));