HTML 5 상용구 템플릿 ( http://html5boilerplate.com/ )을보고 "?v=1"
CSS 및 Javascript 파일을 참조 할 때 URL 에서 사용되는 것을 확인했습니다 .
"?v=1"
링크 및 스크립트 태그에서 CSS 및 Javascript URL에 추가 하면 어떤 기능이 있습니까?- 모든 Javascript URL에
"?v=1"
(아래 샘플의 예) 가있는 것은 아닙니다js/modernizr-1.5.min.js
. 이것이 사실 인 이유가 있습니까?
그들의 샘플 index.html
:
<!-- CSS : implied media="all" -->
<link rel="stylesheet" href="css/style.css?v=1">
<!-- For the less-enabled mobile browsers like Opera Mini -->
<link rel="stylesheet" media="handheld" href="css/handheld.css?v=1">
<!-- All JavaScript at the bottom, except for Modernizr which enables HTML5 elements & feature detects -->
<script src="js/modernizr-1.5.min.js"></script>
<!------ Some lines removed ------>
<script src="js/plugins.js?v=1"></script>
<script src="js/script.js?v=1"></script>
<!--[if lt IE 7 ]>
<script src="js/dd_belatedpng.js?v=1"></script>
<![endif]-->
<!-- yui profiler and profileviewer - remove for production -->
<script src="js/profiling/yahoo-profiling.min.js?v=1"></script>
<script src="js/profiling/config.js?v=1"></script>
<!-- end profiling code -->