本文介绍了meta http equiv属性怀疑的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在打扰我们项目的一页。我找到了这三行。



I was going throgh a page of our project. I found this three line.

<meta http-equiv='Cache-Control' content='no-cache' />
    <meta http-equiv='Pragma' content='no-cache' />
    <meta http-equiv='Expires' content='0' />









为什么我们要求?它在头部标签内..请解释我







why we require that? It's inside the head tag..Please explain me

<html xmlns="http://www.w3.org/1999/xhtml">
<%--<%HeaderHTML("Home Page", 0, 0);%>--%>
<base target='_self' />
<head >
    <title>Transportal :: Home Page</title>
    <meta http-equiv='Cache-Control' content='no-cache' />
    <meta http-equiv='Pragma' content='no-cache' />
    <meta http-equiv='Expires' content='0' />
    <link href='Utility/Style/TMS.css' type='text/css' rel='stylesheet' />

    <script type="text/javascript" language='javascript' src='Utility/JavaScript/commonFunctions.js'></script>

    <script type="text/jscript" language='javascript' src='Utility/JavaScript/CastleBusyBox.js'></script>

</head>

推荐答案


这篇关于meta http equiv属性怀疑的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-24 17:36