0

我有以下对象,我想做的是将该对象中的 page 值设置为另一个值,或者在用户单击 li.product 时将其重置,因为它使用 list.js 插件激活分页。我怎么能这样做?谢谢!

var options = {
        valueNames: ['packageid', 'categoryid',  'meta-package', 'meta-category', 'meta-brand', 'meta-company', 'meta-country'],
        page:24,
        plugins: [
            [ 'paging', {
                name: "duja",
                pagingClass: "bottomPaging",
                innerWindow: 1,
                outerWindow: 2
            } ]
        ]
    };


$('li.product').live("click",function() {
        displayItem($(this));
        $('.single').fadeIn();
        return false;
    });
4

1 回答 1

1

你可以设置这样的东西,options.page = 0;

如果您想将所有内容都设置为空,那么options = {};

$('li.product').on("click",function() {
        displayItem($(this));
        $('.single').fadeIn();
        options.page = 0;
        return false;
    });
于 2013-02-06T09:31:16.050 回答