我的联系表单页面,用于用户编辑详细信息,有两个下拉字段,“国家”和“城市”。我希望当用户编辑他的详细信息时,“城市”字段将被禁用,直到在“国家”下拉菜单中选择某些内容。
<form name="item" action="<?php echo base_url(true) ?>" method="post">
<label><?php _e('Country', 'my_theme'); ?></label>
<?php ItemForm::country_select(get_countries(),user()) ; ?>
<label><?php _e('City', 'my_theme'); ?></label>
<?php ItemForm::cities_select(get_cities(),user()) ; ?>
<button class="itemFormButton" type="submit"></button>
</form>
我在 javascript 中尝试过 '<code>onchange',可能语法错误……</p>
我怎样才能创建这个?谢谢。