1

例如,我提供了一个社交分享插件的亲戚

../../test.html

作为链接

它显示为

http://../../test.html

如果路径前需要“http://”,有什么方法可以将路径转换为绝对路径?谢谢

编辑:

我放置路径的地方

$('#sina').attr('href', "javascript:void((function(s,d,e,r,l,p,t,z,c){var%20f='http://v.t.sina.com.cn/share/share.php?appkey=',u=z||d.location,p=['&url=',e(u),'&title=',e(t||d.title),'&source=',e(r),'&sourceUrl=',e(l),'&content=',c||'gb2312','&pic=',e(p||'')].join('');function%20a(){if(!window.open([f,p].join(''),'mb',['toolbar=0,status=0,resizable=1,width=440,height=430,left=',(s.width-440)/2,',top=',(s.height-430)/2].join('')))u.href=[f,p].join('');};if(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else%20a();})(screen,document,encodeURIComponent,'','','" + imgStr + "','" + shareDes + "','','utf-8'));");

我不知道路径是如何工作的,但如果我提供绝对路径,它就可以工作

#sina是一个<a href></a>元素,而 imgStr 是提供的链接

运行网站后查看源代码,如果是相对路径,显示为"http://../../test.html"

4

1 回答 1

2

尝试

location.hostname+location.pathname+your_relative_path

这将为您提供当前页面的路径(如果 url 中有一个,则减去实际文件名)与您在your_relative_path.

所以,http://www.mypage.com/contents/level1/en-us/page2/../../test.html最终的结果是这样的。

于 2013-08-22T08:21:21.697 回答