なぜこのonChange
イベントが機能していないのか分かりません。たぶん私は私のミスを見ることができないほどコードに慣れています。CakePHP onChangeイベント
echo $form->select('capacidade', $options, null,
array(
'class'=>''
,'label' => ''
,'default' => '200'
,'onchange' => "javascript:checkForOther(this);"
)
);
が生成されたページのソースを持っている:
<td class="cellInput">
<?php
$options = array('200'=>'200', '500'=>'500', '1000'=>'1000', '2000'=>'2000', '5000'=>'5000', 'Outro'=>'Outro');
$attributes = array('legend' => false);
echo $form->select('capacidade', $options, array(
'class' => '',
'label' => '',
'default' => '200',
'onchange' => "javascript:checkForOther(this);",
));
?>
</td>
あなたは試してみて、あなたの前の質問への答えを受け入れる必要があります。 – abhinav