JS小总结

来源:互联网 发布:json文件用什么打开 编辑:程序博客网 时间:2024/06/01 10:36
1、标题闪烁
    function doscroll2() {
        var t = document.title;
        t = t.substring(1, t.length) + t.substring(0, 1);
        alert(t);
        document.title = t;
        setTimeout("doscroll2()", 500);

    }