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.
SlideToggle() をデフォルトで非表示に設定するには? 目標は、ページが最初にロードされたときに、特定のページがデフォルトで非表示になり、ユーザーがボタンをクリックすると表示され、もう一度クリックすると再び非表示になることです。ありがとう
<code> $('a').click(function() { $('div').toggle(function() { $(this).show(200); }); }); </code>