// https://www.watchfinder.com?ɼ?????
const imgs = document.querySelectorAll(“.prod-gallery .owl-item.cloned picture img”)
const imgList = [];
const isValidImg = (src) => !!src.startsWith(“https://images”)
imgs.forEach(img => {
? ? let src = “”;
? ? if (isValidImg(img.getAttribute(“src”))) {
? ? ? ?
? ? ? ?
? ? ? ? src = img.getAttribute(“src”);
? ? } else if (isValidImg(img.getAttribute(“data-srcset”))) {
? ? ? ? src = img.getAttribute(“data-srcset”)
? ? }
? ? // ??ɨ?赽ͼƬ
? ? if(src.length !== 0) {
? ? ? ? imgList.push(src.split(“;”)[0])
? ? }
})
// ͼƬ??ַ
console.log(“ͼƬ??ַ
“);
console.log(imgList.join(“,”));
// ?ֱ?????
const sections = document.querySelector(“section.specification”)
console.log(“????
“);
console.log(sections.outerHTML);
Reviews
There are no reviews yet.