0
我有2下拉列表下拉列表另:如何筛选下拉列表使用与angularJs
<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>
我想通过服务下拉列表中选择值过滤serviceshare值。怎么做?
请问您可以设置一个基本的plunkr – harishr