2011-11-10 61 views
2

我可以得到蛋糕輸出使用下面的PHP提交按鈕提交按鈕:獲取蛋糕PHP輸出HTML與給定的類名

<?php echo $this->Form->end(__('Submit')); ?> 

其輸出該HTML:

<input type="submit" value="Submit"> 

但我想要使用特定的輸入類來獲得以下內容:

<input type="submit" value="Submit" class="some class"> 

是可能的嗎?

謝謝:)。

回答

6

是的,它是可能的:

<?php 
    echo $this->Form->submit(__('Submit',true), array('class'=>'some class')); 
    echo $this->Form->end(); 
?> 

這是記錄here

+0

非常感謝你:) – ale

+0

@alemaster你welcome..Happy編碼:) – Nasreddine

3

這應該做的伎倆:

<?php echo $this->Form->end(array('label' => __('Submit', true), 'class' => 'some class')); ?> 
+0

添加第二個TRUE;參數到你的'__()' ,返回值而不是*回顯*它。 – Nasreddine

+0

添加了第二個參數。 –