-2
我該怎麼做這個東西: 它是SPA, 用戶想要輸入URL,就像這樣:'hello.com#greet/2 但是沒什麼事可做,如果他在網頁上瀏覽頁面'hello.com#問候, 他看到一些問候,然後按2,然後網站有url'hello.com#greet/2',但如果他想從地址欄去那裏,他不能這樣做,如何解決它?我希望,我解釋)如何從用戶的地址欄輸入url?
function parseHash(phash){
var shash=phash.split("/");
var hash=shash[0].replace("#", "", 1)
var num=shash[1]
return {hash: hash, number: num,}
}
}