admin管理员组

文章数量:1345327

How can I use javascript to reload page and go to a specific div when a button is clicked?

function reloadAgreement() {
  location.reload();
}

<li><a href="" onclick="reloadAgreement();">Return to Store Info</a></li>

How can I use javascript to reload page and go to a specific div when a button is clicked?

function reloadAgreement() {
  location.reload();
}

<li><a href="" onclick="reloadAgreement();">Return to Store Info</a></li>
Share Improve this question edited Feb 26, 2014 at 6:23 Karthick Kumar 2,3591 gold badge19 silver badges30 bronze badges asked Feb 26, 2014 at 6:19 msafimsafi 3771 gold badge5 silver badges21 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 8
function gototab(reload)
   {
    window.location.hash = '#tab2';
    window.location.reload(true);
 }

Return to Store Info

from here Reload page with different anchor

edit:

To clarify, the section that says "#tab2" is the 'id' attribute of the div you want the page to go to when the link is clicked.

本文标签: javascriptRefresh the page and then go to a specific divStack Overflow