如何使用 jQuery 而不是 RJS 制作复杂的表单
在 Railscasts 的第 74 集中,ryan 展示了如何使用 RJS 实现复杂的表单:http:// railscasts.com/episodes/74-complex-forms-part-2
技巧是使用 RJS 创建一个部分并link_to
该部分。这一集已经很老了,当时可能还没有 jQuery。现在,通过我的 Rails3 应用程序,我想实现与他在第 74 集中所做的相同的事情,但我想使用 jQuery 实现相同的事情。
有没有办法用 jQuery 做到这一点?
In episode 74 of railscasts ryan shows how to achieve complex forms with RJS: http://railscasts.com/episodes/74-complex-forms-part-2
The trick is to create a partial and link_to
the partial using RJS. The episode is quite old and at that time probably jQuery was not around. Now with my Rails3 app I want to achieve the same thing as he does in episode 74 but I want achieve the same thing using jQuery instead.
Is there a way to do this with jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您可能想看看 Ryan Bates 的一些新的铁路广播。
这个特别可以实现您想要做的事情,但也使用 Prototype 和 jQuery。
http://railscasts.com/episodes/197-nested-model-form -第2部分
Maybe you may want to checkout some new railscasts from Ryan Bates.
This one in special that achieves what you want to do but using Prototype and jQuery as well.
http://railscasts.com/episodes/197-nested-model-form-part-2