通过javascript或jquery将绝对路径转换为相对路径的最佳方法是什么?
例如考虑如下:
"http://localhost:2011/Content/Images/Product/Large/3.jpg"
到
"/Content/Images/Product/Large/3.jpg"
答案 0 :(得分:7)
使用<a>
元素包含位置属性的技巧。
$("<a href='http://localhost:2011/Content/Images/Product/Large/3.jpg'>")
.prop("pathname");
答案 1 :(得分:2)
只需使用window.location.pathname