关于删除无关信息的 Rails 自动完成问题
我的自动完成插件工作得很好...除了我有一些想要在自动完成 div 中显示的信息,但我不想在用户做出选择时结束。
即...我有一个自动完成货币...他们可以按货币代码或国家/地区进行搜索...当他们搜索时,它会显示这两个信息以及国家/地区国旗。
形式:
<%= text_field_with_auto_complete :currency, :from, { :size => "10", :value => "USD" }, :skip_style => true %>
部分:
<li class="currency"><div class="image"><img src="/images/flags_currency/<%=h code %>.png"/></div><div class="name"><%=h code %></div><div class="country"> <%=h other %></div></li>
但是在他们选择之后,我希望不要将国家/地区名称放入框中,我想以某种方式将其编辑出来,使用javascript还是CSS?
有什么想法吗?
I've got my autocomplete plugin working perfectly... except I have certain info that I want displayed in the autocomplete divs, but I don't want to end up when the user makes their selection.
Ie... I have an auto complete for currencies... they can search by either currency code or country... as they search it displays both info along with the countries flag.
Form:
<%= text_field_with_auto_complete :currency, :from, { :size => "10", :value => "USD" }, :skip_style => true %>
Partial:
<li class="currency"><div class="image"><img src="/images/flags_currency/<%=h code %>.png"/></div><div class="name"><%=h code %></div><div class="country"> <%=h other %></div></li>
But after their selection I would like it not to put the country name into the box, I would like to somehow edit it out, either using javascript or CSS?
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样:
从
auto_complete_field
< 的选项中/a>.How about:
From the options for
auto_complete_field
.