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

时间:2011-08-31 15:50:10

标签: javascript jquery relative-path absolute-path

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

例如考虑如下:

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

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

2 个答案:

答案 0 :(得分:7)

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

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

答案 1 :(得分:2)

只需使用window.location.pathname

即可