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 と active scaffold 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>
これは確かにうまくいきます...