最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Remove hashtag(#) from url - Stack Overflow

programmeradmin1浏览0评论

I want hash-tags to be removed from URL after they are used. For example, when i click on the link below:

<a href="#btnq1"><button type="button" name="" value="" id="btnq1">Just a button</button></a>

I want the hash-tag #btnq1 that appears to the URL of the page to be removed just after the action on this link happens. I tried the below jquery code with no success:

$('#btnq1').click(function(event){
   event.preventDefault();
   // your action
});

And even if this works, then how do i implement it to work for every hash tag that is added to the URL? I would like to solve it using javascript.

I want hash-tags to be removed from URL after they are used. For example, when i click on the link below:

<a href="#btnq1"><button type="button" name="" value="" id="btnq1">Just a button</button></a>

I want the hash-tag #btnq1 that appears to the URL of the page to be removed just after the action on this link happens. I tried the below jquery code with no success:

$('#btnq1').click(function(event){
   event.preventDefault();
   // your action
});

And even if this works, then how do i implement it to work for every hash tag that is added to the URL? I would like to solve it using javascript.

Share Improve this question edited Apr 26, 2014 at 14:40 Dchris asked Apr 26, 2014 at 14:05 DchrisDchris 3,08710 gold badges49 silver badges73 bronze badges 7
  • 1 possible duplicate: stackoverflow./questions/10026223/removing-hash-from-url – VF_ Commented Apr 26, 2014 at 14:10
  • i've picked up a wrong question. – Zafar Commented Apr 26, 2014 at 14:21
  • @user3348022 I don't see a solution to your possible duplicate.. I would be glad if you can show me.. – Dchris Commented Apr 26, 2014 at 14:22
  • 1 Having a button inside an anchor. validator.w3 is a useful tool. – Quentin Commented Apr 26, 2014 at 14:33
  • 1 Content Model: Transparent, but there must be no interactive content descendant. — w3/TR/html5/text-level-semantics.html#the-a-element (a button, something designed to be clicked on, is interactive content) – Quentin Commented Apr 26, 2014 at 14:36
 |  Show 2 more ments

2 Answers 2

Reset to default 7

You could try that:

$(window).on('hashchange', function(e){
    history.replaceState ("", document.title, e.originalEvent.oldURL);
});

first add a class to your a tag that you want this behavior for, or a html 5 data- attribute. Then your link bees;

<a href="#btnq1" class="remove-hash"><button>Button</button></a>

$('body').on('click', ".remove-hash", function(e){
    $(this).removeAttr('href');
});
发布评论

评论列表(0)

  1. 暂无评论