加载页面后如何在DOM上使用visual_effect?
我想在渲染时隐藏其中一个 div。页面加载后,我希望它使用 virtual_effect 出现在页面上。
我知道如何在 JS / jQuery 中做到这一点。使用 Prototype 的纯 Ruby 代码可以实现这一点吗?
update_page_tag 并没有真正解决问题它可以与 :highligth 一起使用,但我无法让它与 :apper 或 :slide_down 一起使用。
I would like to make one of the div's hidden while rendring. After page is loaded I would like it to appear on the page using virtual_effect.
I know how to do it in JS / jQuery. Is that possible with pure Ruby code using Prototype?
update_page_tag doesn't really solves the problem It work ok with :highligth, but I can't get it to work with :apper or :slide_down.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我花了相当多的时间寻找解决方案,碰巧我在此处提交问题后就找到了它。 :-)
问题是,我在生成有问题的 div 的同一个助手中调用 update_page_tag 。我没有连接,所以更新代码替换了 content_tag。
Well, I spend quite some time looking for the solution and it happen I found it just after submitting the question here. :-)
The problem was, that I was calling update_page_tag right in the same helper I was generating the problematic div. I wasn't concat'ing, so the update code was replacing the content_tag.