我正在使用 rails 来构建我的应用程序,并且我希望在单击特定链接时有一个厚框。
我在我的部分中使用下面的代码,它显示在页面的一个部分中,并且在单击 user.name 时,我需要厚框。 .当我使用下面的代码时,什么也没有发生..
<%= link_to_function user.name,remote_function(:update=>"result", :url => {:action => :resultsuser}, :with => "'id='+#{user.id}+'&height=400&width=600'") %>
我已经
在thickbox.js文件中包含并用jQuery替换了所有$ ..没有任何反应..
请帮帮我。
<%= javascript_include_tag 'jquery' %>
<%= javascript_include_tag 'thickbox' %>
jQuery.noConflict()
<%= stylesheet_link_tag("thickbox") %>
问问题
277 次
2 回答
0
你把
jQuery.noConflict();
进入脚本标签?
于 2009-07-09T13:12:38.450 回答
0
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") %>
于 2009-09-14T18:03:16.960 回答