这个东西??<script language=javascript>
function showhelp(n)
{switch (n)
   {case 1:
      thelp="添加新的会员。"
      break
    case 2:
      thelp="浏览、查询普通会员资料;修改会员资料;为会员添加职务;删除会员。"
      break
    case 3:
      thelp="浏览查询工作人员资料;修改工作人员资料;修改工作人员职务;撤去工作人员职务。"
      break
    case 4:
      thelp="修改当前管理员密码、添加新的管理员。"
      break
    case 5:
      thelp="退出本系统。如果您已经登录,为防止意外错误发生,请先注销!"
      break
    case 6:
      thelp="当前管理员注销。"
      break
   }
 dz(show,thelp)
}
var i=0
var Time
function dz(obj,str)
{if(i>=str.length)
   obj.innerHTML=str
 else
   obj.innerHTML=str.substr(0,i)+"_"
 i++
 Time=setTimeout("dz("+obj.id+",'"+str+"')",100)
}
function st(obj)
{clearTimeout(Time)
 i=0
 obj.innerHTML=""
}
</script>
<a href="" onmouseover="showhelp(1)" onmouseout="st(show)">asdf</a>
<div id="show"></div>