国际电话输入为下拉列表

时间:2015-05-26 21:14:49

标签: javascript jquery html

国际电话输入是一个很好的插件。但它只是输入。因此用户可以在选择国家后修改。我想用它作为下拉而不是输入 所以我改变了这个:

<input id="phoneleft" type="tel" tabIndex="-1" style="width:95px;" /> 

进入这个:

<input id="phoneleft" type="drop" tabIndex="-1" style="width:95px;" />

但这不起作用。

如何使用国际电话作为下拉菜单而非this之类的输入?

1 个答案:

答案 0 :(得分:0)

听起来你需要一个选择菜单。

<select id="phoneleft">
  <option><!-- add your International Telephone Input data here --></option>
</select>

我是您的示例网站,他们正在使用列表项。

<ul id="phoneleft">
  <li><!-- add your International Telephone Input data here --></li>
</ul>