我想要多选下拉列表,国家/地区名称后跟国家/地区标志。 而目前,我使用以下方法实现了多选下拉列表:
http://davidstutz.github.io/bootstrap-multiselect/
<h4>Employee should be from Country</h4>
<?php
$html6= "";
$qry = "SELECT * FROM jb_country";
$runQuery = mysql_query($qry);
$html6 .= "<select name='pref_emp_country[]' class='form-control' id='my-select' multiple='multiple'>";
while ($sub_cat = mysql_fetch_assoc($runQuery)) {
$html6 .= "<option value=" .$sub_cat['id']. ">" .$sub_cat['name']. "</option>";
} echo $html6 .= "</select>";
?>
这是我使用bootstrap-multiselect的代码。 多选国家工作正常。但现在我想在国名前添加每个国家的国旗。 我想知道我该怎么做!!
感谢节省时间的帮助