从给定的 html 中剥离图像 src

发布于 2024-10-17 08:56:50 字数 265 浏览 6 评论 0原文

html 包含图像路径,就像

<img src="/testsite/images/abc.jpg" />

我希望 javascript 将所有图像 src 转换为

<img src="images/abc.jpg"/>

简单地说,我想删除 image/abc.jpg 之前的任何域/文件夹名称。

如何使用 javascript 来完成呢?

The html contains images path like

<img src="/testsite/images/abc.jpg" />

I want javascript to convert all images src to be like

<img src="images/abc.jpg"/>

Simply saying I want to remove any domain/folder name before image/abc.jpg.

How can it be done using javascript?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

禾厶谷欠 2024-10-24 08:56:50

1000 英里的旅程从一步开始

var images = document.getElementsByTagName('img');
for (var i = 0; i < images.length; ++i) {
  var img = images[i];
  img.src = img.src.replace(/^.*(images/[^/]+)$/, "$1");
}

现在事情是这样的:如果您提供的页面包含具有虚假“src”属性的 元素,则浏览器将在发出问题时出现问题用于加载这些 URL 的 HTTP“GET”请求。如果您可以安排服务器一开始就不要发送错误的 URL,那就更好了。

The journey of 1000 miles begins with a single step

var images = document.getElementsByTagName('img');
for (var i = 0; i < images.length; ++i) {
  var img = images[i];
  img.src = img.src.replace(/^.*(images/[^/]+)$/, "$1");
}

Now here's the thing: if you serve up a page with <img> elements that have bogus "src" attributes, the browser is going to flail around issuing HTTP "GET" requests to load those URLs. It'd be somewhat nicer if you could arrange for the server not to send the wrong URLs in the first place.

梦里南柯 2024-10-24 08:56:50

您可以使用替换方法来完成
这是一个链接

You can do it using replace method
Here is a link.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文