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

javascript - Refresh the page and then go to a specific div - Stack Overflow

programmeradmin1浏览0评论

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.

发布评论

评论列表(0)

  1. 暂无评论