我在laravel应用程序上工作,我有一个select2多项选择的问题,我想在标签中使用它,我在过去3天内搜索解决方案,但仍然没有修复它.. 在我的脑子里:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
在我的观点中:
<div>
{!! Form :: label('tags','Select Tags:')!!}
@foreach($ tags as $ tag)
<option value='{{ $tag->id }}'>{{ $tag->name }}</option>
@endforeach
</select>
$( '选择2的多')。选择2({ 多:真 }); // $('select2-multi')。attr('aria-hidden','true',);
但我仍然有enter image description here而不是此结果enter image description here