将绝对路径转换为相对路径

发布于 2024-12-02 02:46:53 字数 228 浏览 0 评论 0原文

通过 javascript 或 jquery 将绝对路径转换为相对路径的最佳方法是什么?

例如考虑如下

"http://localhost:2011/Content/Images/Product/Large/3.jpg" 

 "/Content/Images/Product/Large/3.jpg" 

What is best way to convert absolute path to relative path by javascript or jquery ?

for example consider as below :

"http://localhost:2011/Content/Images/Product/Large/3.jpg" 

to

 "/Content/Images/Product/Large/3.jpg" 

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

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

发布评论

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

评论(2

脸赞 2024-12-09 02:46:53

使用 元素包含位置属性的技巧。

$("<a href='http://localhost:2011/Content/Images/Product/Large/3.jpg'>")
  .prop("pathname");

Use the trick that <a> elements contain location properties.

$("<a href='http://localhost:2011/Content/Images/Product/Large/3.jpg'>")
  .prop("pathname");
铁轨上的流浪者 2024-12-09 02:46:53

只需使用window.location.pathname

Just use window.location.pathname

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