在rails中使用thickbox3.1时出现问题..!
我正在使用 Rails 来构建我的应用程序,并且我希望在单击特定链接时有一个厚盒..
我在我的部分中使用下面的代码,该代码显示在页面的一个部分中,单击用户名时,我需要厚盒..当我使用下面的代码时,没有任何反应..<%= link_to_function user.name,remote_function(:update=>"结果", :url => {:action => :resultsuser}, :with => "'id='+# {user.id}+'&height=400&width=600'") %>
我已经包括了<%= javascript_include_tag 'jquery' %>
并且还用 jQuery 替换了 Thickbox.js 文件中的所有 $.. 没有任何反应..
<%= javascript_include_tag 'thickbox' %>
jQuery.noConflict()
<%= stylesheet_link_tag("thickbox") %>
请帮帮我。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否将其放入
脚本标签中?
Did you put the
into a scripttag?
尝试在
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") %>