如何在选定的单选按钮上显示元素?

时间:2011-08-31 16:21:48

标签: javascript jquery

        <input id="auto" type="radio" name="warning_type" value="auto"> <label for="auto">Auto-varning</label> <br>
        <input id="manual" type="radio" name="warning_type" value="custom"> <label for="custom">Custom</label> <br>

是我拥有的。

当您选择“自动”时,如何在选择“手动”和#warning_auto时显示#warning_custom?

如果您选择#warning_custom(手动),那么#warning_auto应该隐藏,并且应该以相反的方式发生。

我该怎么做?我试过但我不能设法这样只显示一个,另一个再次隐藏..

1 个答案:

答案 0 :(得分:0)

我猜测你的其余代码是什么样的:

$("input:radio").click(function() {
    if ($(this).val()=="auto") {
        $("#warning_custom").hide();
        $("#warning_auto").show();
    } else {
        $("#warning_auto").hide();
        $("#warning_custom").show();
    }
});