我正在构建一个表单,我需要根据所选国家/地区专门切换两个表单域。一个是美国各州的选择下拉菜单,一个是省的输入字段。它们是并排构建的,并且在任何时候将国家/地区更改为比如说非洲,输入字段就会变得可见。And when the country United States is selected the States select drop down appears. 下面是一个简单的 HTML 示例。
<ul>
<li><label>Country</label><select name="country"></li>
<li><label>State/Province</label><select name="state"><input name="state"></li>
</ul>
到目前为止,这是我的 jquery。
$("#billing_info select[name='state']").css('display', 'none');
$("#billing_info input[name='state']").css('display', 'none');
$("#billing_info select[name='country_code']").change(function () {
if ($("select[name='country_code']") == "USA") {
$("select[name='state']").css('display', 'visible');
$("input[name='state']").prop('disabled', false);
}
else {
$("input[name='state']").css('display', 'visible');
$("select[name='state']").prop('disabled', false);
}
});
我很难让它真正起作用。我需要添加什么才能使此功能正常工作并接受页面已加载的实时更改?