从给定的 html 中剥离图像 src
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
1000 英里的旅程从一步开始
现在事情是这样的:如果您提供的页面包含具有虚假“src”属性的
元素,则浏览器将在发出问题时出现问题用于加载这些 URL 的 HTTP“GET”请求。如果您可以安排服务器一开始就不要发送错误的 URL,那就更好了。
The journey of 1000 miles begins with a single step
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.您可以使用替换方法来完成
这是一个链接。
You can do it using replace method
Here is a link.