使用Jquery

时间:2016-03-31 18:25:37

标签: jquery html5

无法使用这段代码。目的是根据是否从另一个选择控件中选择区域C,从选择控件中删除一个名为Motorhome的选项。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script type="text/javascript">
    $(document).ready(function () {
        $('#Area').change(function () {
            if ($(this).val() == 'C') {
                $("#camping-unit option:[value='Motorhome']").remove();
            }
        });
    });
</script>

1 个答案:

答案 0 :(得分:-1)

尝试:

$("camping-unit").removeAttr("value")