首页 > 代码库 > 自动修改博客CSS样式用的代码

自动修改博客CSS样式用的代码

    <script type="text/javascript" src="https://code.jquery.com/jquery-3.1.1.min.js"></script>    <script>        function test(){            if ($(this).text().indexOf("■") != -1){                $(this).addClass("subtitle")            }            if ($(this).text().indexOf("●") != -1){                $(this).addClass("subtitlesec")            }        }        $(document).ready(function(){           $("p").each(test)        });    </script>

很蠢啊,以后慢慢再改好了

自动修改博客CSS样式用的代码