张晓华的博客

        2005年,最后一场雪,还是下了,虽然凄凉了一些!
posts - 172, comments - 92, trackbacks - 5, articles - 1

javascript脚本修改span内容

Posted on Thursday, March 09, 2006 10:49 PM

javascript脚本

<script>

m=5

Time=window.setInterval("Alors()",1000);
function Alors(){
            Ob=document.all("L");
                        Ob.innerHTML=m;
                        m--;
                        if(m==0){
                          window.open('Logon.aspx','_self');
                        }

}

  </script>

在html页面中添加脚本修改的项目
<span id="L">5</span>

启动页面以后,就会动态修改数字了,等数字变为0的时候,会跳转到登陆页面。

Post Comment

Title  
Name  
Url
Comment   
Protected by Clearscreen.SharpHIPEnter the code you see: