我创建了下拉列表,我想验证这一点。我正在努力进行下拉验证。
<div class="editor-field">
<% if (ViewData["Country"] != null) { %>
<%: Html.DropDownList("Country", "Any")%>
<%} else { %>
<select id="Country" name="Country"></select>
<%} %>
<% if (ViewData["State"] != null) { %>
<%: Html.DropDownList("State", "Any")%>
<%} else { %>
<select id="State" name="State"></select>
<%} %>
<% if (ViewData["City"] != null) { %>
<%: Html.DropDownList("City", "Any")%>
<%} else { %>
<select id="City" name="City"></select>
<% } %>
<% if (ViewData["Region"] != null) { %>
<%: Html.DropDownList("Region", "Any")%>
<% } else { %>
<select id="Region" name="Region"></select>
<% } %>
</div>
这是我的下拉框代码..如何在 jquery 中验证?