当前位置:K88软件开发文章中心电脑基础基础应用12 → 文章内容

Javascript教程之自动输出网页文本

减小字体 增大字体 作者:华军  来源:华军资讯  发布时间:2019-2-1 22:14:23

 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,大功告成!

Javascript教程之自动输出网页文本