select
タグで選択したアイテムに基づいて要素のクラスを変更するのに問題があります。これは私のコードです:
<table>
<tr>
<select onchange="wow(this.value)">
<option value="a">a</option>
<option value="b">b</option>
</select>
</tr>
<tr id="x" class="show">
x
</tr>
</table>
<script>
function wow(value){
switch(value){
case "a": document.getElementById("x").className = "show"; break;
case "b": document.getElementById("x").className = "hide"; break;
}
}
</script>
<style>
.show{
display:inline-block;
}
.hide{
display:none;
}
</style>
ここでは問題はありません。私も試しsetAttribute("class", "show")
ましたが、うまくいきません。