Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 Jquery 事件在 Ruby on Rails 中将一个页面重定向到另一个页面,它不是部分视图,它是另一个控制器视图,请帮助解决我的问题.....
从 jQuery 你可以从当前页面 jQuery 重定向到另一个页面
<script type="text/javascript"> $(document).ready(function() { window.location.href = "/controller-name/action-name"; });
如果您传递任何参数,那么您可以像这样使用
window.location.href="/controller-name/action-name?params_name=<%= @obj.param %>"