取出css路径为:html body.no-electron.desktop.no-mobile.vsc-initialized div#__nuxt div#__layout div div.pc-layout section.el-container.is-vertical main.el-main div.id-photo div.ICbox4 div.bottom div.fileList div.imgBox div.resImg div.i-image-koutu div.crop-box img图片的链接
时间: 2024-04-22 18:24:29 浏览: 220
draw.io-21.6.8-windows-no-installer.rar
你可以使用JavaScript来提取CSS路径中的图片链接。以下是示例代码:
```javascript
// 假设你的图片所在的元素具有如下的CSS路径
var cssPath = 'html body.no-electron.desktop.no-mobile.vsc-initialized div#__nuxt div#__layout div div.pc-layout section.el-container.is-vertical main.el-main div.id-photo div.ICbox4 div.bottom div.fileList div.imgBox div.resImg div.i-image-koutu div.crop-box img';
// 根据CSS路径选择元素
var element = document.querySelector(cssPath);
// 获取图片链接
var imageUrl = element.src;
console.log(imageUrl);
```
将你的CSS路径替换到代码中的`cssPath`变量中,然后运行代码即可获取到图片链接。请注意,这段代码假设图片所在的元素只有一个,如果有多个匹配的元素,你可能需要使用`querySelectorAll`方法并遍历结果来获取每个元素的图片链接。
阅读全文