Rails 3 select 和 onchange 无需 Ajax

发布于 2024-11-18 04:57:02 字数 203 浏览 2 评论 0原文

我一整天都在思考如何构建仅包含所选项目的简单表单。该选择项将包含 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暮光沉寂 2024-11-25 04:57:02

将 onclick 处理程序添加到调用简单提交表单的方法的 select 中。

使用此方法创建选择:

collection_select(method, collection, value_method, text_method, options = {}, html_options = {})

在 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:

collection_select(method, collection, value_method, text_method, options = {}, html_options = {})

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文