我正在使用 rails 发出搜索请求。
搜索表单的操作是某个路径 "/results/foo" .. 它会命中一个控制器,该控制器对输入进行一些验证,然后如果搜索文本是干净的,则重定向到 "results/foobar"。
<h1 class="center"><progress style="font-size: 160%;">Loading...</progress></h1>
我想显示上面的 html .. 并且只显示上面的 html(在视图中或通过 jquery),直到“results/foobar”完全加载。
有没有办法在最后一页完成加载之前显示这样的进度条动画(html)?
更多细节(搜索栏页面有这样的代码):
<form class="form-search" action="/s_results/iscan" method="POST">
<div class="input-append">
<input name="searchtext" type="text" class="span4 search-query" placeholder="Type number here...">
<button type="submit" class="btn">
<i class="icon-search"></i>
Search
</button>
</div>
</form>