0

我有以下内容:

$this->Form->input('type', array(
    'options' => array(
        'Blog',
        'Forum',
        'News',
        'Other'
    ),
    'empty' => '(Select a type)'
), array('title' => 'Select your websites type'));

但是标题没有改变,而是标题是' type'。如何更改标题?

4

2 回答 2

1

我假设您使用“标题”指的是输入的标签

 $this->Form->input('type', array(
                'options' => array('Blog',
                                   'Forum',
                                   'News',
                                   'Other'),
                  'empty' => '(Select a type)',
                  'label' => 'Select your websites type'));

如果您指的是html属性“title”并且不介意select的标签,那么

 $this->Form->input('type', array(
                'options' => array('Blog',
                                   'Forum',
                                   'News',
                                   'Other'),
                  'empty' => '(Select a type)',
                  'title' => 'Select your websites type'));

当然,您可以将它们混合在一起。

于 2013-08-14T13:59:33.107 回答
1

如果您想将名称从更改为'type'其他名称,只需type在您的代码中替换:

$this->Form->input('NEW NAME HERE', array(
    'options' => array(
        'Blog',
        'Forum',
        'News',
        'Other'
    ),
    'empty' => '(Select a type)'
));
于 2013-08-14T14:01:59.460 回答