黑马程序员技术交流社区

标题: 问题出在哪呢? [打印本页]

作者: 黄珍    时间: 2012-4-11 12:42
标题: 问题出在哪呢?
请问这段代码 有什么问题?
function person(name,age){
         this.Name=name;
         this.Age=age;
         this.sayhello = fuction(){
             alert("hello,I am"+this.Name+",I"+this.Age+"years old");
             }
         }
         var p1 = new person ("huangjiangmiao",6);
         p1.sayhello();
作者: 杨曾荣    时间: 2012-4-11 15:23
把这句 var p1 = new person ("huangjiangmiao",6);
放到function person(name,age){}前面看看
作者: 胡振超    时间: 2012-4-11 20:25
this.sayhello = fuction(){
             alert("hello,I am"+this.Name+",I"+this.Age+"years old");
             }

function拼写 错误
作者: 马跃    时间: 2012-4-11 21:18
function person(name,age){
         this.Name=name;
         this.Age=age;
         this.sayhello = fuction(){
             alert("hello,I am"+this.Name+",I"+this.Age+"years old");
             }
         }
         var p1 = new person ("huangjiangmiao",6);
         p1.sayhello();
我了个汗~




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2