admin管理员组

文章数量:1344533

This is probably really simple, but the prototype docs on the $$(function) really suck. What do I DO with all the items once the function gives them to me?

First I tried:

$$('div.category').style.height = 400 +"px";

Then:

$$('div.category').each(.style.height = 400 +"px");

Finally:

for (x in $$('div.category'))
{
    x.style.height = 400 +"px";
}

None of them are working. Help?

This is probably really simple, but the prototype docs on the $$(function) really suck. What do I DO with all the items once the function gives them to me?

First I tried:

$$('div.category').style.height = 400 +"px";

Then:

$$('div.category').each(.style.height = 400 +"px");

Finally:

for (x in $$('div.category'))
{
    x.style.height = 400 +"px";
}

None of them are working. Help?

Share Improve this question edited Dec 28, 2011 at 10:09 Rob W 349k87 gold badges807 silver badges682 bronze badges asked Feb 17, 2010 at 23:33 ck_ck_ 3,82910 gold badges52 silver badges77 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 6
$$('div.category').invoke('setStyle', { height: '400px' });

Read more on invoke.

$$('div.category').each(function(d){
    d.style.height = '400px';
});

本文标签: htmlChange style of all elements of a class via prototype javascriptStack Overflow