本帖最后由 lcbreak 于 2021-3-19 13:09 编辑
[HTML] 纯文本查看 复制代码
<img src="./40.jpg" alt="">
<img src="./40.jpg" alt="">
<img src="./500.jpg" alt="">
<img src="./40.jpg" alt="">
<img src="./40.jpg" alt="">
<img src="./500.jpg" alt="">
<img src="./500.jpg" alt="">
<img src="./40.jpg" alt="">
[JavaScript] 纯文本查看 复制代码
const imgs = document.getElementsByTagName('img');
for (const item of imgs) {
if (item.naturalWidth == 40) {
item.style.width = 20 + 'px';
} else if (item.naturalWidth == 500) {
item.style.width = 600 + 'px';
}
}
这样你看看,获取网页上所有的img,然后遍历一遍,根据图片尺寸进行修改宽度 |