1.创建一个User对象,并且赋予一个说hello的方法
var User=function(){ this.sayHello=function(name){ alert("Hello:"+name) } }
2.调用对象的方法
var user=new User(); user.sayHello("test");
JavaScript 对象 JavaScript对象属性 http://blog.xqlee.com/article/71.html