我在我的页面上使用一个DropDownListFor
和一个标签文本。
<%=Html.DropDownListFor(x => x.MotiveClientType,
new SelectList(
Model.ClientMotives, "Id", "Label", Model.MotiveClientType),
new { id = "ddlMotiveClientType" }
)%>
在我的 上选择值时如何更改我的标签DropDownListFor
?