如何点击按钮时使用javascript重新加载页面并转到特定的div?
function reloadAgreement() {
location.reload();
}
<li><a href="" onclick="reloadAgreement();">Return to Store Info</a></li>
答案 0 :(得分:6)
function gototab(reload)
{
window.location.hash = '#tab2';
window.location.reload(true);
}
返回商店信息
从这里开始 Reload page with different anchor
编辑:
为了澄清,“#tab2”部分是您希望页面在单击链接时转到的div的“id”属性。