2016-09-22 100 views
1

我有一張圖像,我想要與標籤一起顯示。使用FormHelper將圖像添加到標籤(或旁邊)

<?php 
    echo $this->Form->input('ticketdays',['label'=>'Ticket days']); 
?> 
<img src="/img/help-round-button.png"> 

這就是現在發生的情況。我想顯示它在藍色「圓圈」的位置。

enter image description here

如何實現這一目標?我接受任何我能得到的解決方案。已經搜索過stackoverflow和Google,但沒有找到答案。

感謝。

回答

2

嘗試是這樣的:

<div> 
    <label>Ticket days</label> 
    <span style="top:50%" class="glyphicon glyphicon-info-sign"></span> 
    <?php 
     echo $this->Form->input('ticketdays', ['label' => false]); 
    ?> 
</div> 
+0

工作,如果'回聲$這個 - >形式 - >輸入( 'ticketdays',[ '標籤'=>假])'所以它不會顯示兩個標籤 –

+0

如果你在很多地方需要這種結構,你可能會考慮爲它創建一個自定義模板。參見手冊中的[Customizing the FormsHelperHelper Uses](http://book.cakephp.org/3.0/en/views/helpers/form.html#customizing-the-templates-formhelper-uses)。 –