-1

我想要一个下拉菜单 第一个框中的选项是“州”和“省”,第二个将根据第一个选择(州->美国州,省->加拿大省)填充这是我的代码至今:

<form id="updateTreventLocation" action="
<table>

 <%=Url.Action("SavedTreventLocation","Prod")%>" method="post">
  <tr>
        <td colspan="2" class="label">City:</td>
        <td class="content">
            <input type="text" maxlength="100" name="CityLocation" value="<%=EditTreventLocation.locationCity%>" />
        </td>
    </tr>
       <tr>
        <td colspan="2" class="label">Province/State:</td>
        <td class="content">
            <input type="text" maxlength="50" name="ProvinceLocation" value="<%=EditTreventLocation.locationProvince%>" />
        </td>
    </tr>
    </table>
</form>
4

1 回答 1

0

以下链接中的答案应该可以帮助您开始根据第一个下拉列表制作动态更新的第二个下拉列表。

根据另一个下拉列表中的选择填充一个下拉列表

于 2012-07-23T15:38:51.833 回答