最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

html - Change style of all elements of a class via prototype javascript - Stack Overflow

programmeradmin1浏览0评论

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';
});
发布评论

评论列表(0)

  1. 暂无评论