我有下面的代码。
<button id="RefreshMe">Refresh Page</button>
<script>
jQuery('#PageRefresh').click(function() {
location.reload();
});
</script>
这很好用,但是我的页面在表单中有一些隐藏的值,因此它不会重新加载 www.example.com,而是重新加载 www.example.com?a=111 等,这会导致错误,因为 uri 很大。我希望用户返回 www.example.com 而不是 www.example.com?a=111 还需要添加什么?