0

BBQ プラグインは既に動作しているため、これは表面的な変更にすぎません。/index.html#pages/index.htmlURLをからに変換する方法がわかりません/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 に答える