Wie man div in asp.net mvc 5 mit dropdownlist change event ein- und ausblenden kann

Ich versuche, div in meinem MVC 5-Projekt mithilfe des Dropdownlisten-Änderungsereignisses ein- und auszublenden. Ich habe nachgeforscht. Zum Glück habe ich diesen Code online gefunden, aber er scheint bei mir nicht zu funktionieren wo ich fehler mache. Danke im Voraus

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
    $(function () {
        $(document).ready(function () {
            $("#CountryID").change(function () {
                if ($(this).val() == "Ghana") {
                    $("#showStateLga").show();
                    $("#showStateLgaText").hide();
                } else {
                    $("#showStateLga").hide();
                    $("#showStateLgaText").show();
                } 
            });
        });
    });
</script>

Dropdownlist-Steuerung:

<div class="form-group">
                @Html.LabelFor(model => model.CountryID, htmlAttributes: new { @class = "control-label col-md-2" })
                <div class="col-md-10">
                    @Html.DropDownListFor(model => model.CountryID, (IEnumerable<SelectListItem>)ViewBag.cCountryList, "---Select---", new {@class = "form-control" })
                    @Html.ValidationMessageFor(model => model.CountryID, "", new { @class = "text-danger" })
                </div>
            </div>

Div Control:

 <div id="showStateLga" style="display: none">
                <div class="form-group">
                    @Html.LabelFor(model => model.notState, htmlAttributes: new { @class = "control-label col-md-2" })
                    <div class="col-md-10">
                        @Html.EditorFor(model => model.notState, new { htmlAttributes = new { @class = "form-control" } })
                        @Html.ValidationMessageFor(model => model.notState, "", new { @class = "text-danger" })
                    </div>
                </div>
                <div class="form-group">
                    @Html.LabelFor(model => model.notCity, htmlAttributes: new { @class = "control-label col-md-2" })
                    <div class="col-md-10">
                        @Html.EditorFor(model => model.notCity, new { htmlAttributes = new { @class = "form-control" } })
                        @Html.ValidationMessageFor(model => model.notCity, "", new { @class = "text-danger" })
                    </div>
                </div>
            </div>

Rendering-Ergebnisse:

Dropdown-Liste

    <div class="form-group">
                    <label class="control-label col-md-2" for="CountryID">Country:</label>
                    <div class="col-md-10">
                        <select class="form-control" data-val="true" data-val-number="The field Country: must be a number." data-val-required="Select country" id="CountryID" name="CountryID"><option value="">---Select---</option>
                   <option value="1">Afghanistan</option>
                   <option value="2">Ghana</option>
                   <option value="3">Albania</option>
                   <option value="4">Algeria</option>
                       </select>
                        <span class="field-validation-valid text-danger" data-valmsg-for="CountryID" data-valmsg-replace="true"></span>
                    </div>
                </div>

Div1:

    <div id="showStateLga" style="display:block">

                    <div class="form-group">
                        <label class="control-label col-md-2" for="UserStateList">State:</label>
                        <div class="col-md-10">
                            <select class="form-control" id="State" name="State"><option value="">---Select State---</option>
                          <option value="1">Abia State</option>
                         <option value="2">Adamawa State</option>
                          <option value="3">Akwa Ibom State</option>

                        </select>
                        </div>
                    </div>
                    <div class="form-group">
                        <label class="control-label col-md-2"              for="UserCity">City:</label>
                        <div class="col-md-10">
                            <select id="lga" name="lga" class="form-control"    required>
                                <option value="">---Select LGA---</option>
                            </select>
                        </div>
                    </div>
                    </div>

Div2:

<div id="showStateLgaText" style="display:none">
                    <div class="form-group">
                        <label class="control-label col-md-2" for="notNigeriaState">State:</label>
                        <div class="col-md-10">
                            <input class="form-control text-box single-line" data-val="true" data-val-required="Enter state" id="notNigeriaState" name="notNigeriaState" type="text" value="" />
                            <span class="field-validation-valid text-danger" data-valmsg-for="notNigeriaState" data-valmsg-replace="true"></span>
                        </div>
                    </div>
                    <div class="form-group">
                        <label class="control-label col-md-2" for="notNigeriaCity">City:</label>
                        <div class="col-md-10">
                            <input class="form-control text-box single-line" data-val="true" data-val-required="Enter city" id="notNigeriaCity" name="notNigeriaCity" type="text" value="" />
                            <span class="field-validation-valid text-danger" data-valmsg-for="notNigeriaCity" data-valmsg-replace="true"></span>
                        </div>
                    </div>
                </div>

Antworten auf die Frage(2)

Ihre Antwort auf die Frage