改变这个......
www.sample.com/sample.html#commentxxx?stuffhereIdontneed
进入这个...
www.sample.com/sample.html
我有一个链接所以我认为我需要一个正则表达式?
document.write("<a href='"+ window.location.href.replace('?????', '') +
"?ThisIsAppendedLater'>sample</a>");
答案 0 :(得分:15)
var stripped = window.location.href.replace(/#.*$/,'');
答案 1 :(得分:7)
window.location.hash = '';
答案 2 :(得分:1)
url.substring(0,url.indexOf( “#”))
答案 3 :(得分:0)
如果您需要基于正则表达式的解决方案,可以使用:
window.location.href.replace('#.*', '');