在rails中使用thickbox3.1时出现问题..!

发布于 2024-07-25 14:37:06 字数 582 浏览 11 评论 0原文

我正在使用 Rails 来构建我的应用程序,并且我希望在单击特定链接时有一个厚盒..
我在我的部分中使用下面的代码,该代码显示在页面的一个部分中,单击用户名时,我需要厚盒..当我使用下面的代码时,没有任何反应..
<%= link_to_function user.name,remote_function(:update=>"结果", :url => {:action => :resultsuser}, :with => "'id='+# {user.id}+'&height=400&width=600'") %>
我已经包括了
<%= javascript_include_tag 'jquery' %>
<%= javascript_include_tag 'thickbox' %>
jQuery.noConflict()
<%= stylesheet_link_tag("thickbox") %>
并且还用 jQuery 替换了 Thickbox.js 文件中的所有 $.. 没有任何反应..
请帮帮我。

I am using rails to build my application and I want a thickbox on clicking a particular link..
I use the below code in my partial which is displayed in a division of a page and on clicking the user.name, i need the thickbox.. when i use the below code, nothing happens..
<%= link_to_function user.name,remote_function(:update=>"result", :url => {:action => :resultsuser}, :with => "'id='+#{user.id}+'&height=400&width=600'") %>
i have included the
<%= javascript_include_tag 'jquery' %>
<%= javascript_include_tag 'thickbox' %>
jQuery.noConflict()
<%= stylesheet_link_tag("thickbox") %>

and also replaced all $ by jQuery in the thickbox.js file.. nothing happens..
please help me out.

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

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

发布评论

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

评论(2

萌︼了一个春 2024-08-01 14:37:06

您是否将其放入

jQuery.noConflict();

脚本标签中?

Did you put the

jQuery.noConflict();

into a scripttag?

爱情眠于流年 2024-08-01 14:37:06

尝试在 link_to_function 帮助器方法中添加类选项。

<%= link_to_function user.name,remote_function(:update=>"结果", :url => {:action => :resultsuser}, :with => "'id='+# {user.id}+'&height=400&width=600'", :class => "thickbox") %>;

Try adding the class option in the link_to_function helper method.

<%= link_to_function user.name,remote_function(:update=>"result", :url => {:action => :resultsuser}, :with => "'id='+#{user.id}+'&height=400&width=600'", :class => "thickbox") %>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文