如何使用选择菜单和 link_to 重定向到另一个页面 - Ruby on Rails

发布于 2024-09-04 08:18:44 字数 244 浏览 3 评论 0原文

我想使用选择菜单重定向到另一个页面,但是当我选择“主页”时,它不会将我重定向到主页。什么也没发生...

<select>
    <option>Select a menu</option>
    <option><%= link_to 'Home', '/' %></option>
</select>

谢谢你的帮助。

I want to use a select menu to redirect to another page but when I select 'Home' it doesn't redirect me to the main page. Nothing happens...

<select>
    <option>Select a menu</option>
    <option><%= link_to 'Home', '/' %></option>
</select>

Thank you for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

顾铮苏瑾 2024-09-11 08:18:44

您不能将链接放入 SELECT 标记内。这是 HTML 的限制,而不是 Rails 的限制。

相反,您应该做的是这样的:

<%= select_tag(:menu_select, options_for_select([ 'Home', '/' ])) %>

然后您需要确保在选择新链接时加载页面。这可以通过 jQuery 使用类似以下内容来完成:

$('#menu_select').bind('change', function() { window.location.pathname = $(this).val() });

当表单选择更改时,将加载新的 URL。

You can't put a link inside a SELECT tag. This is a limitation of HTML, not Rails.

What you should do instead is something like this:

<%= select_tag(:menu_select, options_for_select([ 'Home', '/' ])) %>

Then you need to ensure that when the new link is selected, the page is loaded. This can be done with jQuery using something like this:

$('#menu_select').bind('change', function() { window.location.pathname = $(this).val() });

When the form selection is changed, the new URL is loaded.

守不住的情 2024-09-11 08:18:44

link_to 帮助器输出一个 HTML 超链接,当嵌套在 option 元素中时,该超链接将不起作用。您应该更改您的选项,使其具有以下格式:

<option value="/">Home</option>

然后您可以使用一些 JavaScript 来观察下拉列表的 onchange 事件,并将 document.location.href 设置为所选选项的值。这将执行重定向。

或者,您可以在提交表单的下拉列表旁边有一个Go提交按钮,然后让Rails使用redirect_to 帮手。

The link_to helper outputs an HTML hyperlink which is not going to work when nested within an option element. You should change your options so that they have this format:

<option value="/">Home</option>

Then you could have some JavaScript that observes the onchange event of the dropdown and sets the document.location.href to the value of the selected option. This will perform the redirect.

Alternatively, you could have a Go submit button next to the dropdown that submits the form and then have Rails perform a server-side redirect to the page for the selected option using the redirect_to helper.

☆獨立☆ 2024-09-11 08:18:44

这也将起作用:

<select onChange="if(this.selectedIndex!=0) self.location=this.options[this.selectedIndex].value">
<option value="/">Home</option>
</select>

This will also work:

<select onChange="if(this.selectedIndex!=0) self.location=this.options[this.selectedIndex].value">
<option value="/">Home</option>
</select>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文