我正在使用rails来构建我的应用程序,我想在点击特定链接时使用厚箱。
我在部分中使用下面的代码,它显示在页面的一个分区中,点击user.name,我需要厚箱..当我使用下面的代码时,没有任何反应..
<%= link_to_function user.name,remote_function(:update=>"result", :url => {:action => :resultsuser}, :with => "'id='+#{user.id}+'&height=400&width=600'") %>
我已经包括了
<%= javascript_include_tag 'jquery' %>
并且还在thickbox.js文件中替换了jQuery中的所有$ ..没有任何反应..
<%= javascript_include_tag 'thickbox' %>
jQuery.noConflict()
<%= stylesheet_link_tag("thickbox") %>
请帮帮我。
答案 0 :(得分:0)
你放了
jQuery.noConflict();
到一个脚本标签?
答案 1 :(得分:0)
尝试在link_to_function
辅助方法中添加class选项。
<%= link_to_function user.name,remote_function(:update=>"result", :url => {:action => :resultsuser}, :with => "'id='+#{user.id}+'&height=400&width=600'", :class => "thickbox") %>