jquery到prototype格式问题
我目前正在使用 Rails 的 Facebox_render 插件,并试图在没有 jquery 的情况下使其工作(因此使用原型)。我的功能已经达到 99%,但有一行我遇到了困难。
我将如何使用原型编写以下内容?
link_to_function(name, "jQuery.facebox(function(){ #{remote_function(options)} })", html_options || options.delete(:html))
我不熟悉原型,所以很可能有一个非常简单的解决方案:P
这是 jQuery.facebox(function() ... ) 位让我悲伤。
I'm currently using the facebox_render plugin for rails, and am trying to get it working without jquery (so using prototype). I've got it 99% functional, but there's one line I'm having difficulty with.
how would I write the following using prototype?
link_to_function(name, "jQuery.facebox(function(){ #{remote_function(options)} })", html_options || options.delete(:html))
I'm not familiar with prototype, so chances are there's a really simple solution :P
It's the jQuery.facebox(function() ... ) bit that's causing me grief.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Facebox 是一个依赖于 jQuery。也就是说,它依赖于加载 jQuery 才能工作。要使用 Facebox,您需要加载 jQuery。
尝试使用 Facebox 的 PrototypeJS 端口,请参阅: 将 Facebox 从 jQuery 移植到 Prototype
Facebox is a plugin that depends on jQuery. That is, it depends on jQuery being loaded to work. To use Facebox, you need to load jQuery.
Try using the PrototypeJS port of Facebox, see: Porting Facebox from jQuery to Prototype