Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 rails 3.2 和活动脚手架 3.2.3,我想在刷新页面后清除搜索内容(空搜索字段)。
你可以简单地做到这一点
define javascript tag in your page and write this code <script type="text/javascript>"> $(document).ready(function () { $("your_text_field_id").val(""); }); </script>
这肯定会奏效...