_search.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. <div id="search" class="search">
  2.     <% form_tag({ :controller => 'articles', :action => 'search' },
  3.                 { :method => 'get', :id => 'sform' }) do -%>
  4. <h3><%= _("Search")%></h3>
  5.       <p><input type="text" id="q" name="q" value="" /></p>
  6.     <% end -%>
  7.     <div id="loading" class="loading" style="display:none;"><%= _("Searching")%>...</div>
  8.     <div id="results" class="results"></div>
  9.   <%= observe_field 'q',
  10.                     :url        => { :controller => 'live', :action => 'search' },
  11.                     :frequency  => 1,
  12.                     :loading    => "Element.show('loading')",
  13.                     :complete   => "Element.hide('loading')",
  14.                     :update     => 'results',
  15.                     :with       => "'q=' + encodeURIComponent($F('q'))" %>
  16. </div>