Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 BBQ 插件已经在工作了,所以这只是表面上的改变。我不知道如何将 URL/index.html#pages/index.html从/index.html#index
/index.html#pages/index.html
/index.html#index
我猜这基本上是一个片段转换,但对 JS 来说很新。有什么想法吗?
您可以仅使用 window.location.hash 访问哈希,它会返回一个字符串,因此您可以对其进行任何您喜欢的字符串操作。例如:
var temp = window.location.hash; // == #pages/index.html temp = temp.replace("pages/","").replace(".html",""); window.location.hash = temp; //sets the hash to #index