在我执行 this.form.submit() onchange 事件后,它会重新加载页面并带到页面的最顶部。是否有可能的解决方案可以带到我在 js onchange 调用之前所在的同一页面位置?
问问题
595 次
2 回答
0
要么使用 AJAX 以使页面不会重新加载,要么将表单中的操作 URL 更改为使用命名锚 ( #something
) 以便重新加载到页面上的相应锚点。
于 2012-08-09T16:49:38.363 回答
0
You can make an ajax call so that the page is not entirely reloaded (nor scrolled back).
Or you can use anchors to scroll to a specific div
. To do so append #theIdOfTheDiv
at the end of the redirection URL.
于 2012-08-09T16:46:23.840 回答