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 badges2 Answers
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
版权声明:本文标题:html - Change style of all elements of a class via prototype javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743788224a2539076.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论