¹ö¶¯×´Ì¬À¸Script


<!--One step to installing this script-->

<!--1) Copy below, and insert anywhere in your webpage-->



<script language="Javascript">

<!--



//This credit line must stay intact

//Status Scrolling script

//For this script, visit java-scripts.net or http://wsabstract.com



myMsg = "I hope you enjoy visiting Java-scripts.net! "

i=0



function scrollMsg() {

frontPart = myMsg.substring(i,myMsg.length)

backPart = myMsg.substring(0,i)

window.status = frontPart + backPart

if (i < myMsg.length) {

i++

}

else {

i = 0

}

setTimeout("scrollMsg()",50)

}



window.onload=scrollMsg

//-->

</script>