我正在尝试yii
在bootstrap tag
. 标签字段有效,但预输入无效。
我的领域:
<?= $form->field($model, 'existing_control')
->textInput(
[
'max-width'=>'10px',
'id'=>'vuln'.$model->v_id,
//'data-role'=>'tagsinput',
'name'=>$model->v_id,
'placeholder'=>'Type each here and press enter',]
)
?>
我的脚本:
$('input[type=text][id="vuln<?php echo $model->v_id;?>"]').tagsinput({
typeahead: {
source: ["Amsterdam","Washington","Sydney","Beijing","Cairo"],
}
});
我遇到了类似的错误TypeError: a is undefined
。bootstrap-tagsinput.min.js
我做错了什么?