このように書くと
1 2 3 4 | echo $this ->Form->submit( '送信' , array ( 'type' => 'button' , 'div' =>false, 'label' =>false)); echo $this ->Form->submit( '送信' , array ( 'type' => 'submit' , 'div' =>false, 'label' =>false)); echo $this ->Form->button( '送信' , array ( 'type' => 'button' , 'div' =>false, 'label' =>false)); echo $this ->Form->button( '送信' , array ( 'type' => 'submit' , 'div' =>false, 'label' =>false)); |
1 2 3 4 | <input type= "button" value= "送信" /> <input type= "submit" value= "送信" /> <button type= "button" >送信</button> <button type= "submit" >送信</button> |
0 件のコメント:
コメントを投稿