$('#category-id').empty();
for (i = 0; i < response[0].category.length; i++) {
$('#category-id').append($('<option></option>') //here typo mistake
.attr('value', response[0].category[i].id)
.attr('selected', 'selected')
.text(response[0].category[i].category_name));
}
这是来自交易视图中的javascript代码 _form.php 。它由radiobutton点击触发。 Select2包含收入和费用类别。当我选择一个收入类别并点击费用单选按钮时。该选项更改了费用类别。但选定的收入类别仍然显示出来。它没有明确。
<?=
$form->field($model, 'category_id')->widget(Select2::classname(), [
'data' => Category::getCategoryListByType($model->transaction_type),
'options' => [
'id' => 'category-id',
'placeholder' => Yii::t('frontend/common', 'Please select one'),
'allowClear' => true,
],
'pluginOptions' => ['allowClear' => true]
]);
?>
选择2个PHP代码。 请帮忙。谢谢。