我有以下对象,我想做的是将该对象中的 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;
});