jquer文字闪烁简单实现

arguments.callee
<script type="text/javascript">
        (function () {
            $(".usesend").fadeOut(100).fadeIn(100);
            setTimeout(arguments.callee, 2000); //可以自己根据需要来设置
        })();


    </script>
原文地址:https://www.cnblogs.com/huangyoum/p/3793728.html