HTML CSS JS コードを書いていて、要素のグループのスタイルを変更しようとしています。document.getElementById(id).style.something = 'somevalue'; については既に知っています。しかし、それらのうちの約 25 を記述し、25 の異なる ID を持つ必要があります。クラスのスタイル プロパティを変更する方法はあるのだろうか。例えば:
CSS コード:
div.text
{
width: 100px;
}
HTML コード:
<div class="text">Some Text</div> <!-- and bunch of other divs like it !>
JavaScript コード:
function changeWidth() {
document.getElementsByClass('text').width = '200px';
// I know getElementByClass doesn't exist I wanna know if there is something that would do that.
}