js里这样的对象怎么把 b里面的a给读取出来
答案:2 悬赏:0 手机版
解决时间 2021-04-02 05:03
- 提问者网友:火车头
- 2021-04-01 12:02
js里这样的对象怎么把 b里面的a给读取出来
最佳答案
- 五星知识达人网友:渡鹤影
- 2021-04-01 12:41
方法一:
function A() {
}
A.prototype.b = function() {
this.a = "wode";
return this.a;
}
function B() {
var a = A.prototype.b();
//var a = new A.prototype.b().a;
alert(a)
}
方法二:
function A() {
}
A.prototype.b = function() {
this.a = "wode";
}
function B() {
var a = new A.prototype.b().a;
alert(a)
}
function A() {
}
A.prototype.b = function() {
this.a = "wode";
return this.a;
}
function B() {
var a = A.prototype.b();
//var a = new A.prototype.b().a;
alert(a)
}
方法二:
function A() {
}
A.prototype.b = function() {
this.a = "wode";
}
function B() {
var a = new A.prototype.b().a;
alert(a)
}
全部回答
- 1楼网友:渊鱼
- 2021-04-01 12:53
var obj=new (new A()).b();
console.log(obj.a);
console.log(obj.a);
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯