通過javascript或jquery將絕對路徑轉換爲相對路徑的最佳方式是什麼?將絕對路徑轉換爲相對路徑
例如考慮如下:
"http://localhost:2011/Content/Images/Product/Large/3.jpg"
到
"/Content/Images/Product/Large/3.jpg"
通過javascript或jquery將絕對路徑轉換爲相對路徑的最佳方式是什麼?將絕對路徑轉換爲相對路徑
例如考慮如下:
"http://localhost:2011/Content/Images/Product/Large/3.jpg"
到
"/Content/Images/Product/Large/3.jpg"
使用技巧,<a>
元素包含位置屬性。
$("<a href='http://localhost:2011/Content/Images/Product/Large/3.jpg'>")
.prop("pathname");
絕妙的訣竅!你可以參考任何解釋'pathname'道具的文檔嗎?我們可以依賴的其他道具是什麼? – abernier
@abernier:[這是一個列表。](https://developer.mozilla.org/en/DOM/HTMLAnchorElement#Properties)雖然它確實說明它是HTML5。我不知道跨瀏覽器支持。 – pimvdb