Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
369 views
in Technique[技术] by (71.8m points)

javascript - How to disable #hashtag in URL

My JQM includes three data-role="page".

The issue:

Now I go to another page2 from the default home page1, so the URL is localhost/index.php#page2. When I refresh the page, it is still in page2.

Is that a way that it can go back to localhost/index.php instead of current page (without any parameters)?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Each click event of the link / button fire the following...

To only remove the value, not the hash

window.location.hash = ""

...............................................................

This will completely remove the hash and value.

window.location.href = window.location.href.substr(0, window.location.href.indexOf('#'))

** Implementation **

$('a').click(function() {
    window.location.href = window.location.href.substr(0, window.location.href.indexOf('#'));
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...