发布网友 发布时间:2022-04-23 02:17
共2个回答
热心网友 时间:2022-04-22 14:11
function test()
{
}
test.prototype.name = '张三';
test.prototype.sayName = function(){
console.log(this.name);//张三
}
热心网友 时间:2022-04-22 15:29
暂时好像不支持放class里面,
只能 ClassName.prototype.prop = xxx;