📌  相关文章
📜  来自 javascript 代码示例的数组

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

代码示例6
// 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://'));