导轨上的下拉菜单
我需要为我的 Rails 应用程序制作一个简单的下拉菜单,但我能找到的只是下拉选择。 有人知道制作下拉菜单的好指南吗?只是一个简单的菜单,没有什么花哨的
I need to make a simple dropdown menu to my rails app, but all i can find is dropdown selects.
does any1 know a good guide on making dropdown menus? just a simple menus, nothing fancy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下拉菜单不是在 Rails 中内置的,您需要一个 javascript 插件来实现它。
如果您在 Rails 应用程序中使用 prototype 作为 JavaScript 框架,这里有一些 基于 prototype+scriptaculous 的下拉菜单插件 。如果您在 Rails 框架中使用 jQuery 作为 JavaScript 框架,这里有一些 基于 jQuery 的下拉菜单插件。
希望有帮助。
Dropdown menu is not something that is built in rails and you need a javascript plugin to achieve that.
If you are using prototype as your javascript framework in your rails app, here are some of prototype+scriptaculous based dropdown menu plugin . If you are using jQuery as your javascript framework in your rails framework, here are some of jQuery based dropdown menu plugin.
Hope that helps.