输入显示框中循环出现文字
发布时间:2006-10-14 2:56:49   收集提供:gaoqian
步骤一: 请将下面的原代码插入到<body>下面 ,
<SCRIPT LANGUAGE="javascript">

<!-- escondamos
//texto a mostrarse
var mensaje=" >>> 欢 >>> 迎 >>> 你的 >>> 光临";
mensaje+=" >>> 经 >>> 常 >>> 来 >>> 哟";

//fraccion a mostrarse
var ancho=50;

//rutina de mensaje deslizante
function desliza(){
document.forms[0].panel.value=mensaje.substring(mensaje.length-ancho,mensaje.length);
mensaje=mensaje.substring(mensaje.length-1,mensaje.length)+mensaje;
mensaje=mensaje.substring(0,mensaje.length-1);
setTimeout("desliza()",100);
}

// basta de esconder -->

</SCRIPT>
<form>
<INPUT TYPE="text" NAME="panel" VALUE="" SIZE="50">
</form>

步骤二: , 把<body>中的内容改为:

<body bgcolor="#ffffff" onLoad="desliza(); return true;">
 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50