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

Any*_*One 2 javascript jquery relative-path absolute-path

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

例如,考虑如下:

"http://localhost:2011/Content/Images/Product/Large/3.jpg" 
Run Code Online (Sandbox Code Playgroud)

 "/Content/Images/Product/Large/3.jpg" 
Run Code Online (Sandbox Code Playgroud)

pim*_*vdb 7

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

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