A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© wdj_student 中级黑马   /  2013-5-16 18:06  /  1357 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>index</title>
<script type="text/javascript">
        var t1=t2=0;
        function start(){
                var words=document.getElementById("words");
                words.value="";
                //如果Cookie中不存在用户
                if(!Cookie("name")){
                        var _name=prompt("请输入你的用户名?");
                        Cookie("name",_name,{expires:360});
                        }
                var date=new Date();
                t1=date.getTime();//记录当前时间
                words.focus();  //获得焦点
                }
        function stop(){
                var words=document.getElementById("words");
                var date=new Date();
                t2=date.getTime();//记录暂停时的时间
                //计时打字用时
                var time=(t2-t1)/(1000*60);
                //记录输入的总字数
                var num=words.value.length;
                //计算打字速度
                rate=Math.round(num/time);
                //检测Cookie中是否存在历史成绩
                Cookie("rate")||Cookie("rate",0,{expires:360});
                if(parseInt(Cookie("rate"))<rate){
                        //如果现在成绩优于历史成绩,则存储该成绩
                                Cookie("rate",rate,{expires:360});
                        }
                //检测Cookie中的总字数
                var sum=Cookie("sum")?Cookie("sum"):0;
                //存储累计总字数
                Cookie("sum",(parseInt(sum)+num),{expires:360});
                var info="你输入的总字数:"+Cookie("sum")+"\n"+
                                        "本次打字数:"+num+"\n"+
                                        "本次打字速度(字/分):"+rate+"\n"+
                                        " 最好成绩:"+Cookie("rate")+"\n";
                words.value=info;
                }
        function clear(){
                Cookie("num",null);
                Cookie("sum",null);
                Cookie("rate",null);       
                var words=document.getElementById("words");
                words.value="";
        }
</script>
</head>

<body>
<input type="button"  id="start" value="开始测试打字速度" />
<input type="button"  id="stop" value="停止" />
<input type="button" id="clear" value="清除Cookie" /><br />
<textarea id="words" cols="80" rows="20"></textarea>
</body>
</html>


为什么没有结果?该怎么改

评分

参与人数 1技术分 +1 收起 理由
苏波 + 1

查看全部评分

4 个回复

正序浏览
斩_梦 发表于 2013-5-18 00:44
,这样就可以啦,一般情况下JS不执行的情况下就是因为字母大小问题,都是细节问题,细节决定成败,应该不会 ...

不行啊,不信你可以试试
回复 使用道具 举报
<input type="button"  id="start" value="开始测试打字速度"  onclick="start()"/>,这样就可以啦,一般情况下JS不执行的情况下就是因为字母大小问题,都是细节问题,细节决定成败,应该不会有错的。
回复 使用道具 举报
SOAR 发表于 2013-5-16 18:25
你的按钮没有注册任何触发事件。

就算注册了事件也不行
回复 使用道具 举报
你的按钮没有注册任何触发事件。

评分

参与人数 1技术分 +1 收起 理由
苏波 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马