请问javascript如何调用自己定义的类里面的方法
发布网友
发布时间:2022-04-22 12:42
我来回答
共4个回答
热心网友
时间:2022-04-22 14:11
function Person(name,age){
this.name = name;
this.age = age;
this.getName = function(){
return this.name;
}
}
var p = new Person("test",23);
alert(p.getName());
热心网友
时间:2022-04-22 15:29
一个类 class 类中方法 public
s = new class();
s.public(); 就可以了
热心网友
时间:2022-04-22 17:04
使用new关键字
QQ = new 类名
QQ.方法()
热心网友
时间:2022-04-22 18:55
实例化类 在调用方法