0

我正在使用 Rails 2.3.8。

在我的 application.rhtml 我有:

<%= javascript_include_tag "jquery.js"%>

在我的 index.rhtml 中,它使用 application.rhtml 进行布局,我有:

<div id="search_residential"> <%= link_to "Residential", 
"javascript:residentialSearchForm()", :onclick=> remote_function(:url => {:propertyType => 'residential', :controller => 'site', :action => 'searchform'}, :update => 'search_form', :method => :get)%></div>`

在我应该呈现的部分中,我有:

<%logger.debug "Residential Form Partial Rendered"%>

当我单击链接时,我的日志输出:

Processing SiteController#searchform (for 127.0.0.1 at 2012-10-05 11:11:02) [GET]
  Parameters: {"controller"=>"site", "propertyType"=>"residential", "action"=>"searchform", "authenticity_token"=>"Iw3ID/4Lh5IReUwOnhhSUXfn2IIVUnYpqG1N7DE4BHg="}
Rendering site/searchform
Residential Form Partial Rendered
Rendered site/searchbar/_search_residential (5.2ms)
Rendered site/searchbar/_search_form (5.9ms)
Completed in 9ms (View: 7, DB: 0) | 200 OK [http://localhost/site/searchform?propertyType=residential&authenticity_token=Iw3ID%2F4Lh5IReUwOnhhSUXfn2IIVUnYpqG1N7DE4BHg%3D]

但网站上没有显示任何内容。如果我删除 jQuery 的包含,则呈现部分内容。

4

1 回答 1

0

remote_function 是一个原型助手并且依赖于prototype.js Jquery 会在$ 命名空间发生冲突。建议不要使用原型助手。或者您应该在 noConflict 模式下初始化 jquery。

于 2012-10-05T11:25:57.637 回答