yii2中使用Active小部件
阿新 • • 發佈:2018-12-16
文字框:textInput();
密碼框:passwordInput();
單選框:radio(),radioList(); 複選框:checkbox(),checkboxList(); 下拉框:dropDownList(); 隱藏域:hiddenInput(); 文字域:textarea(['rows'=>3]); 檔案上傳:fileInput(); 提交按鈕:submitButton(); 重置按鈕:resetButtun();
<?php $form = ActiveForm::begin(['action' => ['test/getpost'],'method'=>'post',]); ?> <? echo $form->field($model, 'username')->textInput(['maxlength' => 20]) ?> <? echo $form->field($model, 'password')->passwordInput(['maxlength' => 20]) ?> <? echo $form->field($model, 'sex')->radioList(['1'=>'男','0'=>'女']) ?> <? echo $form->field($model, 'edu')->dropDownList(['1'=>'大學','2'=>'高中',