본문 바로가기

IT/JQuery

유저 브라우저 캐쉬로 인해 수정된 js파일 적용 안될 때

JS 또는 CSS 파일을 수정하였지만 적용이 안될 때가 있다.

브라우저가 캐쉬에 있는 파일을 사용하기 때문인데, 변경된 파일을 새로 불러와서 사용하는 방법은 다음과 같다.


[변경 전]

<script type="text/javascript" src="/js/frame/common/window.js"></script>


[변경 후]

<script type="text/javascript" src="/js/frame/common/window.js?ver=1"></script>