我无法先让帧刷新,然后跳转到锚点。我将命令放在onClick事件中的顺序似乎没有区别。我甚至试图把它们拉到一个功能中无济于事。
<input type="button"
onclick="edit_form.edit_mode.value=1;
edit_form.submit();
top.settings.location.reload();
top.settings.location='index.php?fuseaction=admin.displayCallReportSettings#3';"
value="Save"
name="save_button">
这可能吗?
答案 0 :(得分:0)
这是因为您正在启动帧重新加载,并且立即发出命令以转到另一个URL。您必须分配onload
处理程序并将该锚点滚动到那里查看。