0

我的 BBQ 插件已经在工作了,所以这只是表面上的改变。我不知道如何将 URL/index.html#pages/index.html/index.html#index

我猜这基本上是一个片段转换,但对 JS 来说很新。有什么想法吗?

4

1 回答 1

1

您可以仅使用 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
于 2011-04-27T23:55:25.530 回答