var NewsTime = 3500; var TextTime = 20; var newsi = 0; var txti = 0; var txttimer; var newstimer; var newstitle = new Array(); var newshref = new Array(); newstitle[0] = "奥运杂谈 5—631 杨志垣"; newshref[0] = "forum/forum_show.asp?strPostName=ShowForumContent&TopicsId=1377&ForumId=16"; newstitle[1] = "-西电轶事- 华山“悬厕” 5—631 杨志垣"; newshref[1] = "forum/forum_show.asp?strPostName=ShowForumContent&TopicsId=1376&ForumId=14"; newstitle[2] = "-西电往事- 难忘的一堂西军电生活习惯课 4—611 邓泽培"; newshref[2] = "forum/forum_show.asp?strPostName=ShowForumContent&TopicsId=1375&ForumId=14"; newstitle[3] = "[转帖]珍爱生命,远离国足"; newshref[3] = "forum/forum_show.asp?strPostName=ShowForumContent&TopicsId=1374&ForumId=22"; newstitle[4] = "体育,你快乐吗?"; newshref[4] = "forum/forum_show.asp?strPostName=ShowForumContent&TopicsId=1373&ForumId=15"; function shownews() { var endstr = "_" hwnewstr = newstitle[newsi]; newslink = newshref[newsi]; if(txti==(hwnewstr.length-1)){endstr="";} if(txti>=hwnewstr.length){ clearInterval(txttimer); clearInterval(newstimer); newsi++; if(newsi>=newstitle.length){ newsi = 0 } newstimer = setInterval("shownews()",NewsTime); txti = 0; return; } clearInterval(txttimer); document.getElementById("printWord").href=newslink; document.getElementById("printWord").innerHTML = hwnewstr.substring(0,txti+1)+endstr; txti++; txttimer = setInterval("shownews()",TextTime); } shownews();