如何检查radiobutton是否未被取消

时间:2017-06-30 10:45:38

标签: javascript jquery html

我有一个jquery脚本,它读取复选框的值。当我有1个值并且休息隐藏其他值时,这很好。现在,当复选框没有值时,我正在寻找解决方案。如果没有价值隐藏。这是我的解决方案。

$("[name$='RadioButtonChoiceField']:checked").each(function(){
    var val = $(this).val()

    if(val != "need"){
        $(this).closest("table").closest("tr").hide();
    }
});

更新Picture of solution

0 个答案:

没有答案