在Bootstrap 4中,选择选项字段不支持required =“ true”进行简单验证

时间:2019-01-24 08:08:21

标签: html5 css3 bootstrap-4

我无法解决此问题。请帮忙!

我已经尝试过:required="required"

<span class="channel">
           <select class="selectpicker" name="channel_id" data-style="btn btn-link" id="exampleFormControlSelect1" required="true">
                 <option>Channel</option>

               @foreach($channels as $channel)
                  <option value="{{ $channel->id }}">{{ $channel->title }}   
                 </option>
               @endforeach

            </select>
  </span>

如果Bootstrap 4中还有其他选项,请告诉我。

0 个答案:

没有答案