JavaScript要怎么做才能让也没自行打印,其实是有这个设置的,大家不妨拷贝下面的代码。在网页中经常有人使用Swish来做文本输出的打字效果,其实JavaScript也能做出那样的效果,按如下方法在HTML文件中加入JavaScript代码便可。
Javascript教程之自动输出网页文本
第一步:把如下代码加入《 head》区域中。
《 SCRIPT LANGUAGE=“JavaScript”》《BR》《BR》 《 !-- Original: Tarjei Davidsen (the@rescueteam-com) --》《BR》《BR》 《 !-- This script and many more are available free online at --》《BR》《BR》 《 !-- The JavaScript Source!! javascript.internet-com --》《BR》《BR》 《 !-- Begin《BR》《BR》 var max=0;《BR》《BR》 function textlist() {《BR》《BR》 max=textlist.arguments.length;《BR》《BR》 for (i=0; i《 max; i++)《BR》《BR》 this[i]=textlist.arguments[i];}《BR》《BR》 tl = new textlist( “在此输入要输出的文字”);《BR》《BR》 var x = 0; pos = 0;《BR》《BR》 var l = tl[0].length;《BR》《BR》 function textticker() {《BR》《BR》 document.tickform.tickfield.value = tl[x].substring(0, pos) + “_”;《BR》《BR》 if(pos++ == l) {《BR》《BR》 pos = 0;《BR》《BR》 setTimeout(“textticker()”, 2000);《BR》《BR》 if(++x == max) x = 0;《BR》《BR》 l = tl[x].length;《BR》《BR》 } else《BR》《BR》 setTimeout(“textticker()”, 50);}《BR》《BR》 // End --》《 /script》《BR》《BR》
第二步:把如下代码加入《 body》区域中。
《 form name=tickform》
《 textarea name=tickfield rows=3 cols=38 style=“background-color: rgb(0,0,0); color: rgb(255,255,255); cursor: default; font-family: Arial; font-size: 12px” wrap=virtual》The news will appear here when the page has finished loading.《 /textarea》《 /form》
第三步:把《 body》改为《 body bgcolor=“#fef4d9” OnLoad=“textticker()”》
OK,大功告成!