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
1 Answer
Reset to default 8function 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
版权声明:本文标题:javascript - Refresh the page and then go to a specific div - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743809092a2542728.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论