在Cascading DropDown Change Jquery上提交表单

时间:2012-10-17 15:02:35

标签: javascript jquery razor

我有一个在Jquery中完成的级联下拉列表它们工作得很好但是在第二次dropDown更改时提交表单有问题,这是我的代码。

$("#Bank").change(function () {
        var bankId = $(this).val();
        $.ajax("/App/BankBranch/ByBank", {
            data: { "id": bankId },
            type: "get", contentType: "application/json",
            success: function (result) {
                var options = $("#id");
                options.html("");
                $.each(result, function () {

                    options.append($("<option />").val(this.Id).text(this.Name));

                });

            }

        });

    }).trigger('change'); //to make the event run on initialization for default value



        $('#id').change(function() {
            this.form.submit();

    });

表单仅在我从下拉列表中选择一个值时提交,但是当第一个下拉列表填充第二个数据时,它不会提交表单。

更新 添加了HTML

<h2>@ViewBag.Title</h2>

            <h4>Seleccione Sucursal</h4>
            @using (Html.BeginForm(null, null, FormMethod.Get))
                {
                    <div class="pull-left">
                        @Html.Label("Banco")
                        @{Html.RenderAction("GetAllBanks", "Bank", new { ControlName = "Bank" });}
                      &nbsp;
                   </div>

                <div class="pull-left">
                    @Html.Label("Sucursal")
                    @Html.DropDownList("id", Enumerable.Empty<SelectListItem>(),null ,new {name="id", @class="input-medium"})
                 </div>
            }

1 个答案:

答案 0 :(得分:0)

 $('#id').change(function() {
        this.form.submit();; //double semi-colon here, remove and it should be fine

 });