如何使用另一个带有 angularJs 的下拉列表过滤下拉列表



我有2个下拉列表:

    <div class="control-group">
        @Html.LabelFor(x => x.ServiceId)
        @Html.DropDownListFor(x => x.ServiceId, new SelectList(Model.ServiceList, "Id", "Title"), new { @class = "open" })
    </div>
    <div class="control-group">
        @Html.LabelFor(x => x.ServiceShareId)
        @Html.DropDownListFor(x => x.ServiceShareId, new SelectList(Model.ServiceShareList, "Id", "Title"), new { @class = "open" })
    </div>

我想按服务下拉列表筛选服务份额值 选定的值。怎么办?

要使用角度过滤下拉列表,请找到以下链接寻求帮助。

http://plnkr.co/edit/n7TebC?p=preview

最新更新