我想在我的下拉列表中填充国家和相关标志。我仔细考虑了这个问题。
Html Country List with flags
但还是不能理解,因为工作模式已经坏了。
怎么做?

最佳答案

你在用引导程序吗?如果是,在下面的链接中有一个非常有趣的表单助手
http://www.freenetmall.com/common/jquery/FormHelpers/docs/country.html
适合您的情况的示例HTML代码片段是:;

<div class="bfh-selectbox bfh-countries" data-country="US" data-flags="true">
  <input type="hidden" value="">
  <a class="bfh-selectbox-toggle" role="button" data-toggle="bfh-selectbox" href="#">
    <span class="bfh-selectbox-option input-medium" data-option=""></span>
    <b class="caret"></b>
  </a>
  <div class="bfh-selectbox-options">
    <input type="text" class="bfh-selectbox-filter">
    <div role="listbox">
    <ul role="option">
    </ul>
    </div>
  </div>
</div>

如果这没有帮助,请提供更多信息,说明您是否将标志存储在数据库中,并希望在下拉框中列出它们,等等?如能提供更多关于该方法的信息,将不胜感激。

09-16 09:32