yii2 各个表单项的用法大全
Posted isenhart
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yii2 各个表单项的用法大全相关的知识,希望对你有一定的参考价值。
-
文本框:textInput();
-
密码框:passwordInput();
-
单选框:radio(),radioList();
-
复选框:checkbox(),checkboxList();
-
下拉框:dropDownList();
-
隐藏域:hiddenInput();
-
文本域:textarea([‘rows‘=>3]);
-
文件上传:fileInput();
-
提交按钮:submitButton();
-
重置按钮:resetButtun();
$form = ActiveForm::begin([‘action‘ => [‘test/getpost‘],‘method‘=>‘post‘,]);$arr = ArrayHelper::map(Community::find()->all(), ‘id‘, ‘name‘);$arr = array_merge([‘请选择小区‘], $arr);echo $form->field($user, ‘communityid‘)->dropDownList($arr);// 下拉框读取数据库操作
以上是关于yii2 各个表单项的用法大全的主要内容,如果未能解决你的问题,请参考以下文章