如何使用select标签在bootstrap表单中添加国家选择器?

时间:2018-06-15 12:55:37

标签: html bootstrap-4

 <div class="col-sm-6">
           <div class="form-group">
            <label for="country">Country:</label>
           <select class="form-control bfh-countries" data-country="US"></select>
          </div>
        </div>

我想选择使用此表单的国家/地区。

1 个答案:

答案 0 :(得分:0)

我认为您可能宁愿通过SQL引入这些国家/地区。但是,如果您要手动输入它们,只需添加带有值和文字的<option>标记。

 <div class="col-sm-6">
           <div class="form-group">
            <label for="country">Country:</label>
           <select class="form-control bfh-countries" data-country="US">
            <option value="United States">United States</option>
           </select>
          </div>
        </div>