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.
私を助けてください!私は単純なアコーディオンを作成し、アコーディオンのコンテンツを除いて、ページのどこかをクリックすると閉じるようにしています。
JSFiddle を参照してください。jsfiddle.net/2DaR6/201/
jsfiddle.net/2DaR6/201/
クリックした要素がアコーディオンにあるかどうかを確認するだけです
$(document).click(function(e) { if (!$( "#acc" ).is(e.target) && !$( "#acc" ).has(e.target).length) { $('#acc').accordion('activate', -1); } });
http://jsfiddle.net/2DaR6/202/