xun_2008 2012-05-08 16:57
浏览 241
已采纳

JS面向對象 對象包含對象無法調用內部對象函數的問題

[code="html"]

function TreeNode(){ this.zoom = 10; this.children = []; } var prototype = new TreeNode(); prototype.generateChildren = function() { for(var i = 0; i < 2; i++ ) { var node = new TreeNode(); this.children.push(node); } } prototype.area = function(w) { if(w <= 1) { return 1; } else { w -= 1; return this.zoom*this.area(w); } } prototype.generateChildren(); alert("children.length:" + prototype.children.length); for(var i = 0; i < prototype.children.length; i++ ) { alert(i + ":"+prototype.children[i].area(i+2)); }



[/code]

JS面向對象 對象包含對象無法調用內部對象函數的問題
报Uncaught TypeError: Cannot call method 'area' of undefined错误,
各位小虾大虾们,有空帮忙看看啊,thanks in advance!

  • 写回答

1条回答 默认 最新

  • iteye_4905 2012-05-08 17:23
    关注

    你这里的 prototype 只是一个实例,你只是将 area 方法加到 prototype 这个 TreeNode, 将
    [code="javascript"]
    prototype.generateChildren = function() {

    for(var i = 0; i < 2; i++ ) {

    var node = new TreeNode();

    this.children.push(node);

    }

    }

    prototype.area = function(w) {

    if(w <= 1) {

    return 1;

    } else {

    w -= 1;

    return this.zoom*this.area(w);

    }

    }

    [/code]
    改为
    [code="javascript"]
    TreeNode.prototype.generateChildren = function() {

    for(var i = 0; i < 2; i++ ) {

    var node = new TreeNode();

    this.children.push(node);

    }

    }

    TreeNode.prototype.area = function(w) {

    if(w <= 1) {

    return 1;

    } else {

    w -= 1;

    return this.zoom*this.area(w);

    }

    }

    [/code]

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 用verilog实现tanh函数和softplus函数
  • ¥15 Hadoop集群部署启动Hadoop时碰到问题
  • ¥15 求京东批量付款能替代天诚
  • ¥15 slaris 系统断电后,重新开机后一直自动重启
  • ¥15 QTableWidget重绘程序崩溃
  • ¥15 谁能帮我看看这拒稿理由啥意思啊阿啊
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站