我正在尝试设置一个重定向器,这样当我的 AJAX 函数改变URI的哈希部分时,链接仍然可以直接访问,如果它被复制和粘贴的话。但是,它总是返回false!
//If a hash is found, redirect it
var current_uri = String(window.location);
if (current_uri.search('/\#/') != -1) {
var current_uri_array = current_uri.split('#');
window.location = current_uri[1];
}
我怎样才能修改代码使其工作?有没有更好的方法来做这件事?
代码更新为:
if (window.location.hash) {
window.location = window.location.hash.substring(1);
}
这招奏效了。
1条答案
按热度按时间rt4zxlrg1#
尝试直接使用
window.location.hash
;)