我的网址生成如下:仅在 ie9 中显示
http://myurl.com/#/categories/posts
如何从 url 中删除 # 并使其http://myurl.com/categories/posts
与我的其他页面一样?谢谢。
我可以这样使用吗?我如何检测#因为首页没有#。
if ($.browser.msie && parseInt($.browser.version, 10) === 9 && window.location.href.indexOf("#"))
{
document.location.href = String( document.location.href ).replace( /#/, "" );
}
删除 #/.replace( /#\//, "" );
如前所述使用 Kevin B