0

私はこれを使用しています

              echo $this->Js->submit("Send", array(
                'before'=>$this->Js->get('#sending')->effect('fadeIn'),
                'success'=>$this->Js->get('#sending')->effect('fadeOut'),
                'update'=>'#success'                            
                    )); 

これはindex.ctpにあり、クリックするとコントローラーのインデックスアクションに移動します。しかし、私はそれを別の行動に移してほしい。どうすればいいですか。ありがとう

4

1 に答える 1

0

それを手に入れました

別のアクションにはURL配列が必要です

 echo $this->Js->submit("Send", array(
'before'=>$this->Js->get('#sending')->effect('fadeIn'),
'success'=>$this->Js->get('#sending')->effect('fadeOut'),
'update'=>'#success',
'url' => array(
     'action' => 'pp'
         ),                     
)); 
于 2012-04-29T02:05:52.633 に答える