Removing the CSS file

前端 未结 4 2059
时光取名叫无心
时光取名叫无心 2020-12-30 08:36

I am using spring MVC with jsp page for presentation, i have three tab suppose A,B and C in one jsp page. While clicking on A tab the css f

4条回答
  •  情歌与酒
    2020-12-30 09:05

    You can unload a css by disabling it as follows:

    $("#A").click(function(){
        $("link[href*=bb.css]").attr("disabled", "disabled");
        $("link[href*=cc.css]").attr("disabled", "disabled");
        $("link[href*=aa.css]").removeAttr("disabled");
    });
    

提交回复
热议问题