このように書くと
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));このように出力されます。
<input type="button" value="送信" /> <input type="submit" value="送信" /> <button type="button">送信</button> <button type="submit">送信</button>
0 件のコメント:
コメントを投稿