开发者

Converting absolute path to relative

开发者 https://www.devze.com 2023-04-01 06:27 出处:网络
What is best way to convert absolute path to relative path by javascript or jquery ? for example consider as below :

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

 "/Con开发者_如何学Gotent/Images/Product/Large/3.jpg" 


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

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


Just use window.location.pathname

0

精彩评论

暂无评论...
验证码 换一张
取 消