Tôi đã xem xét một mẫu soạn sẵn HTML 5 (từ http://html5boilerplate.com/ ) và nhận thấy việc sử dụng "?v=1"
URL trong khi tham khảo các tệp CSS và Javascript.
- Việc gắn
"?v=1"
vào các URL CSS và Javascript trong thẻ liên kết và tập lệnh làm gì? - Không phải tất cả các URL Javascript đều có
"?v=1"
(ví dụ từ mẫu bên dướijs/modernizr-1.5.min.js
:). Có một lý do tại sao đây là trường hợp?
Mẫu từ họ 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 -->