如何在 Greasemonkey 中用 img src url 替换图像链接
从标题来看,这听起来像是一个重复的问题。但我要求的是帮助编写一个 Greasemonkey 脚本,该脚本获取 src url 中包含单词“thumbnails”的所有图像,将“thumbnails”替换为“images”,然后将新的 url 放入 href(目标)url 中。
到目前为止我所得到的是:
for(var iImage=0;iImage<document.images.length;iImage++){
var imageUrl = document.images[iImage].src;
if (imageUrl.indexOf("thumbnails") != -1) {
imageUrl = imageUrl.replace("thumbnails","images")
document.images[iImage].href = imageUrl;
}
}
任何帮助将不胜感激。
From the title this may sound like a duplicate question. But what I am asking for is help writing a Greasemonkey script that takes all images containing the word "thumbnails" in the src url, replaces "thumbnails" with "images" but then putting the new url into the href (target) url.
What I have so far is:
for(var iImage=0;iImage<document.images.length;iImage++){
var imageUrl = document.images[iImage].src;
if (imageUrl.indexOf("thumbnails") != -1) {
imageUrl = imageUrl.replace("thumbnails","images")
document.images[iImage].href = imageUrl;
}
}
Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
img 标签不能有 href,但是您可以将它们附加到具有 href 属性的锚标签中:
img tags cant have href, however you can append them into an anchor tag with href attribute:
伪代码:
这有效吗?
Psuedo-code:
Does this work?