例如,我提供了一个社交分享插件的亲戚
../../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"