<meta>标签http-equiv属性中pragma cache-control expires三者的关系。
1 <meta http-equiv="pragma" content="no-cache"> 2 <meta http-equiv="cache-control" content="no-cache"> 3 <meta http-equiv="expires" content="0">
三者所表达的意义是一样的,而且在现代浏览器中均完美支持。
其中cache-control与expires均为http1.1支持项,而pragma则为http1.0支持项。
但是三者的优先级均小于http头文件,这一点要注意。
具体要用哪个,看自己的喜好与实际需求了。
个人喜欢使用cache-control。
PS:content中的参数,请参考官方文档:HTTP RFC2616 HeaderField