javascript - 我在学css ,实验 :link :visited 这几个选择器的时候,一直没发生变化,应该是缓存问题
迷茫
迷茫 2017-04-11 09:21:52
0
1
332

我想问问怎么速快的的清除缓存,

我一般是用 遨游浏览器,因为遨游的JavaScript控制台显示console.dir( ), prototype ,__proto__ 这些方法显示的更直观;

FireFox和ie 显示都是一坨...

有时候用FireFox ie 看兼容性,

我用的 win7 我想问问,我直接删除或清空 哪个 文件夹,就能把缓存全删了?

<head>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
</head>


<style>

    .a
    {
    width:200px;height:50px  ;
    background-color:red;
    display:block;
    border:0px;
    }

    .a:visited
    {
    width:200px;height:80px  ;
    background-color:green;
    display:block;
    border:0px;
    }

    .a:hover
    {
    width:200px;height:80px  ;
    background-color:#dfdfdf;
    display:block;
    border:0px;
    }


</style>


<body>
    <a class="a" href="#1" target="_blank"></a>
    <a class="a" href="#2" target="_blank"></a>
    <a class="a" href="#3" target="_blank"></a>
</body>
迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(1)
大家讲道理
a:link 
a:visited 
a:hover
a:active

伪类的顺序LVHA
顺序不对效果可能出不来

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!