鼠标经过文字变色


脚本说明:
把如下代码加入<body>区域中
<p onMouseMove="hello()">鼠标经过时就会变色的文本</p>
                  <script language="VBScript">
sub hello
document.fgColor=int(256*256*256*rnd)
end sub
</script>