搜索框用什么组件?

不知道有没有好的推荐?
已邀请:

小莹子

赞同来自: terry_zhoujie

如果这种输入框,可添加:
把前缀后后缀元素放在一个带有 class .input-group 的 <div> 中。
接着,在相同的 <div> 内,在 class 为 .input-group-addon 的 <span> 内放置额外的内容。
把该 <span> 放置在 <input> 元素的前面或者后面。

温馨提示:为了保持跨浏览器的兼容性,请避免使用 <select> 元素,因为它们在 WebKit 浏览器中不能完全渲染出效果。也不要直接向表单组应用输入框组的 class,输入框组是一个孤立的组件。
例如:<form class="bs-example bs-example-form" role="form">
<div class="input-group">
<span class="input-group-addon">@</span>
<input type="text" class="form-control" placeholder="twitterhandle">
</div>
<br>
<div class="input-group">
<input type="text" class="form-control">
<span class="input-group-addon">.00</span>
</div>
<br>
<div class="input-group">
<span class="input-group-addon">$</span>
<input type="text" class="form-control">
<span class="input-group-addon">.00</span>
</div>
</form>
效果:
inputgroup_demo.jpg

王赛

赞同来自:

要看你实现什么功能了,如果只是一个“框”的话,写个 input 就ok,如果需要下拉列表的话可以用
https://github.com/twitter/typeahead.js

要回复问题请先登录注册