<a>标签的显示隐藏

<style>
    a.tk {
            pointer-events: none;
            filter: alpha(opacity=50); /*IE滤镜,透明度50%*/
            -moz-opacity: 0.5; /*Firefox私有,透明度50%*/
            opacity: 0.5;    /*其他,透明度50%*/
        }
</style>

  {% if 条件  %}
    <a  class="" onClick=""  title=""></a>
    {% else %}
    <a  class="tk" onClick="" title=""></a>
   {% endif %}

这是我在django项目中用到的。

猜你喜欢

转载自blog.csdn.net/qq_36802726/article/details/80309451
今日推荐