这里是textFieldRow
之前的passwordField
,textFieldRow
总是与 具有相同的背景颜色passwordField
,并且总是具有默认值。我想要一个白色的空白textField
,但我做不到。我试过给它设置空白值和白色背景颜色,它似乎不起作用,也许它被yii本身覆盖了。
如果有一些朝着正确解决方案的方向发展,那将不胜感激。谢谢。
这里是textFieldRow
之前的passwordField
,textFieldRow
总是与 具有相同的背景颜色passwordField
,并且总是具有默认值。我想要一个白色的空白textField
,但我做不到。我试过给它设置空白值和白色背景颜色,它似乎不起作用,也许它被yii本身覆盖了。
如果有一些朝着正确解决方案的方向发展,那将不胜感激。谢谢。
Please check the css of your corresponding theme.If you haven't customized the theme,you can check the css\form.css
of your application. You can edit the css corresponds to text field in your form there.
Set default value like
<?php echo $form->textField($model,'name',array( 'placeholder'=>'Enter your Name')); ?>