问题
How can i change http://www.example.com/#home to http://www.example.com/home
I'm using jquery tabs
Is it possible ?
回答1:
pushState will do this, though support isn't so great.
Read up here: http://badassjs.com/post/840846392/location-hash-is-dead-long-live-html5-pushstate?16328a60
回答2:
You may try the replace function:
str = str.replace('#', '');
来源:https://stackoverflow.com/questions/12689408/how-can-jquery-window-location-hash-replace