1

我试图理解为什么这不起作用。(尚未验证的基本示例)

当我测试它时,萤火虫状态 Product.addPage 没有找到。

var Product = function ()
{
    var Page = function ()
    {
        var IMAGE = '';

        return {
            image : function ()
            {
                return IMAGE;
            },
            setImage : function (imageSrc_)
            {
                IMAGE = '<img id="image" src="' + imageSrc_ + '" height="100%" width="100%">';
            }
        };
    };
    var PAGES = [];

    return {
        addPage : function ()
        {
            var len = PAGES.length + 1;
            PAGES[len] = new Page();
            return PAGES[len];
        },
        page : function (pageNumber_)
        {
            var result = PAGES[pageNumber_];
            return result;
        }
    };
};

// Begin executing
$(document).ready(function ()
{
    Product.addPage.setImage('http://site/images/small_logo.png');
    alert(Product.page(1).image());
});
4

4 回答 4

8

您正在尝试引用 Product函数(在本例中为构造函数)的 addPage 属性,而不是在返回的对象上。

你可能想要这样的东西:

// Begin executing
$(document).ready(function ()
{
    var product = new Product();
    product.addPage().setImage('http://site/images/small_logo.png');
    alert(product.page(1).image());
});
它还将括号添加到 addPage 调用中(尽管这不是 FireBug 一直抱怨的问题,因为它无论如何都无法找到该方法)。

于 2009-01-15T16:57:12.807 回答
2

怎么样?Product.addPage().setImage('http://site/images/small_logo.png');


编辑:原来我只发现了一半的问题。看看 dtsazza 对整个事情的回答。

于 2009-01-15T16:56:42.293 回答
0

这也可以:

Product().addPage().setImage('http://site/images/small_logo.png');
于 2009-01-15T17:21:13.307 回答
0

怎么样:

var Product = {
    Page : function() {             
        return {
            _image : '',
            Image : function() {
                return this._image;
            },
            setImage : function(imageSrc_) {
                this._image = '<img id="image" src="' + imageSrc_ + '" height="100%" width="100%">';
            }
        };
    },
    Pages : [],
    addPage : function() {
        var Page = new Product.Page();
        this.Pages.push(Page);
        return Page;
    },
    GetPage : function(pageNumber_) {
        return this.Pages[pageNumber_];
    }
};

// Begin executing
$(document).ready(function ()
{
    Product.addPage().setImage('http://site/images/small_logo.png');
    alert(Product.GetPage(0).Image());
});
于 2009-01-16T15:37:10.857 回答