首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

第一次写html,不知道哪错了,希望可以得到大家帮助解决办法

2012-06-09 
第一次写html,不知道哪错了,希望可以得到大家帮助HTML codehtmlheadtitleCSS Example/title/head

第一次写html,不知道哪错了,希望可以得到大家帮助

HTML code
<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>

在IE8中自带的“开发人员工具”中提示:
对象不支持此操作 index.html 行6 字符1.
另外我想问一下,我用这样的高度方法有没有什么问题,有没有什么更好的高度方法?

[解决办法]
start换个方法名就Ok了

热点排行