ユーザー編集の詳細については、お問い合わせフォームページに「国」と「都市」の2つのドロップダウンフィールドがあります。ユーザーが詳細を編集するときに、[国]ドロップダウンメニューで何かが選択されるまで[都市]フィールドが無効になるようにしたいと思います。
<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>
どうすればこれを作成できますか?どうも。