2
我想通過jQuery在視圖頁面中更改場景。 我的表單中有一個複選框,我希望在複選框中需要輸入框。在窗體Yii2中更改場景
我的規則:
public function rules() {
return [
.
.
.
['pass' , 'required', 'on'=> 'checked']
]
}
我的看法頁:
<?=$form->field($model, 'check')->checkbox()?>
<?=$form->field($model, 'Pass')->textInput(['maxlength' => 20])?>
做任何檢驗之前我刪除了答案,因爲沒有相關的jQuery .validatio而是使用yii2場景......。如果你想驗證客戶端可能是更好的ajax驗證o本地jquery驗證無情景... – scaisEdge