2017-05-17 135 views
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> 

回答

0

我剛剛算出來了。無論如何,我會在這裏張貼未來的編碼人員,他們碰巧尋求類似問題的答案。

<script> 
    $(document).ready(function() { 
     $("#staff-list").on('change', function() { 
     history.replaceState(null, null, "?account=" + $(this).val()); 
     }); 
    }); 
    </script>