Rails 3 select 和 onchange 无需 Ajax
我一整天都在思考如何构建仅包含所选项目的简单表单。该选择项将包含 3 或 4 个静态值。
我不知道如何制作此表单 - 我需要在从选择报价中选择项目后将表单发送到控制器以执行操作。
我尝试搜索和阅读很多文章,但不幸的是我找不到工作解决方案...我不需要 Ajax,只需要基本功能。
我想请你帮忙,如何做这个简单的表格...... 谢谢你, M。
I am struggling a whole day with the idea, how to build simple form that contains only select item. This select item will be contains 3 or 4 static values.
I don't know, how to make this form -- I need that after select the item from select offer will the form sent to controller for an action.
I tried to search and reading a lot of articles, but unfortunately I can't find working solution... I don't need an Ajax, just basic functionality.
I would ask you for help, how to do this simple form...
Thank you,
M.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 onclick 处理程序添加到调用简单提交表单的方法的 select 中。
使用此方法创建选择:
在 html_options 哈希中放入 :onclick => javascript 方法中的“some_javascript_method()”
让它提交表单。我建议使用 jQuery 来获取要调用提交的表单元素。
add an onclick handler to the select that calls a method that simply submits the form.
Use this method to create the select:
In the html_options hash put in :onclick => "some_javascript_method()"
in your javascript method have it submit the form. I would suggest using jQuery to get the form element to call submit on.