Skip to content
On this page

현재 주소에서 파라메터 없애기

설명 :

현재 브라우저 주소에 겟 파라메터를 없애는 방법이 있다.

페이지가 이동되지 않고 바로 해당 파라미터를 삭제 되는 소스이다.

참고하면 된다.

js
$(document).ready(function(){
 
    var uri = window.location.toString();
 
    if (uri.indexOf("?") > 0) {
 
        var clean_uri = uri.substring(0, uri.indexOf("?"));
 
        window.history.replaceState({}, document.title, clean_uri);
 
    }
 
});

구글링으로 서치 단어는

jquery history pushstate remove params

이걸로 엄청 찾아보면된다.

참고 자료 :

https://onlinecode.org/how-to-remove-query-string-from-url-using-jquery/