1

我很难根据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"),但没有用。

4

2 回答 2

8

你必须包装X一个<td>

http://jsfiddle.net/DerekL/CVxP7/

<tr>...<td id="x" class="show">x</td></tr>

另外你必须case在前面添加"a":

case "a":
    document.getElementById("x").setAttribute("class", "show");
    break;

PS:有一种更有效的方法可以实现您在这里尝试做的事情:

http://jsfiddle.net/DerekL/CVxP7/2/

function wow(value) {
    var index = {
        a: "show",
        b: "hide"
    };
    document.getElementById("x").setAttribute("class", index[value]);
}

现在您无需键入document.getElementById("x").setAttribute("class"...两次。

于 2013-03-11T03:53:14.007 回答
0

试试这个

switch(value){
    case "a": document.getElementById("x").setAttribute("class", show); break;        
    case "b": document.getElementById("x").setAttribute("class", hide); break;
}
于 2013-03-11T04:00:36.880 回答