这可能非常简单,但是$$(函数)上的原型文档真的很糟糕。一旦功能将它们交给我,我该怎么处理所有项目?
首先我尝试了:
$$('div.category').style.height = 400 +"px";
然后:
$$('div.category').each(.style.height = 400 +"px");
最后:
for (x in $$('div.category'))
{
x.style.height = 400 +"px";
}
他们都没有工作。帮助
答案 0 :(得分:6)
$$('div.category').invoke('setStyle', { height: '400px' });
详细了解invoke。
答案 1 :(得分:4)
$$('div.category').each(function(d){
d.style.height = '400px';
});