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