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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 邝雄伟 中级黑马   /  2013-1-14 14:13  /  1002 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


以下代码明明按照视频写的,怎么会没有运行结果,求分析,是不是我的DW软件和老师用的软件版本不同啊

<!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>无标题文档</title>
</head>

<body>

<script type="text/javascript">

function Person(name,age)
{
        this.name = name;
        this.age = age;
        this.setName = funtion(n)
        {
                this.name = n;
        }
        this.getName = funtion()
        {
                return  this.name;
        }
}

var p = new Person("lisi",33);
p.setName("wangwu");

alert(p.getName());


</script>
</body>
</html>




网页错误详细信息

用户代理: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727)
时间戳: Mon, 14 Jan 2013 06:07:57 UTC


消息: 'n' 未定义
行: 16
字符: 2
代码: 0
URI: file:///K:/java%20study/day28/jaobject.html

评分

参与人数 1黑马币 +6 收起 理由
Rancho_Gump + 6 神马都是浮云

查看全部评分

1 个回复

倒序浏览
  this.setName = funtion(n)//拼错了。function!
         {
                 this.name = n;
         }
         this.getName = funtion()//拼错了。function!
         {
                 return  this.name;
         }

评分

参与人数 1黑马币 +6 收起 理由
Rancho_Gump + 6 赞一个!

查看全部评分

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