我有一个很好的url重定向脚本,但是我想对其进行一些更改。
当我重定向传出链接时,在重定向的URL末尾,我得到类似“ #lcinside”的信息
例http://dl.dropbox.com/u/36139836/unknown.html?urlc=http://imgur.com/
去http://imgur.com/#lcinside
但是我想在URL开始前放#lcinside
。
例#lcinsidehttp://imgur.com
我想放置adf网址重定向链接,而不是#lcinside
。
我怎样才能把#lcinside
放在url之前。
下面是脚本。
请帮我。
<script>
function gup(sName)
{
sName = sName.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var sRegEx = "[\\?&]" + sName + "=([^&#]*)";
var regEx = new RegExp(sRegEx);
var aResult = regEx.exec(window.location.href);
if(aResult == null)
{
return "";
}
else
{
return aResult[1];
}
}
if(gup("urlc") != "")
{
window.location = gup("urlc").replace("lcamp", "&") + "#lcinside";
}
</script>
最佳答案
如果您只是尝试清理引荐来源网址,则可能应该使用元刷新<meta http-equiv="refresh" content="1;url=http://imgur.com/#lcinside">