1
我試圖隱藏/顯示組合框,我有2個組合框,我希望第二個隱藏,直到第一個更改。Cakephp 2.x - 隱藏/顯示組合框
<?php echo $this->Form->input('combobox1'); ?>
<?php echo $this->Form->input('combobox2'); ?>
因此,我認爲我需要做的是這樣的:
$this->Js->get('#idcombobox2')->effect('hide');
隱藏在頁面只需加載組合框。
而且是這樣的:
$this->Js->get('#idcombo1')->event('change', $this->Js->get('#idcombobox2')->effect('show'));
因爲如果第一個變化我想說明的第二位。
但這不起作用。
感謝您的幫助。