0
我有一個下面的代碼附加URL。代碼正常工作。然而,replaceState並沒有像我想的那樣工作。基本上,我只是希望頁面不會重新加載/刷新時,URL附加文本。任何建議如何解決這個問題?通過replaceState追加Url防止頁面重新加載
<script>
$(document).ready(function() {
$("#staff-list").on('change', function() {
history.replaceState(null, null, location.href = "?account=" + $(this).val());
});
});
</script>