第一次写html,不知道哪错了,希望可以得到大家帮助
<html> <head> <title>CSS Example</title> </head> <body> <input type="button" onclick="start('abcdefg')" value="start" /> <input type="text" id="here" /> <script type="text/javascript"> function start(str1) { str=str1; len=str.length; i=0; dwrite(); } function dwrite() { document.getElementById("here").value=document.getElementById("here").value + str.charAt(i); if( i++ ==len ) { i=0; return true; } setTimeout("dwrite()",500); } </script> </body></html>