私はまだjavascriptとJQueryにかなり慣れていません...トグル領域の外側をクリックしてこのdivを閉じるにはどうすればよいですか(ユーザーが閉じるボタンを使用する必要はありません)
コードは次のようになります。
function toggleDiv(divId) {
$("#"+divId).toggle();
}
function showonlyone(thechosenone) {
$('.newnote').each(function(index) {
if ($(this).attr("id") == thechosenone) {
$(this).show(0);
}
else {
$(this).hide(0);
}
});
}
htmlは次のようになります
<div class="note">
<a id="myHeader1" href="javascript:showonlyone('newnote1');" >
<img src="images/SN_NotesPage_14.png">
</a>
<div class="newnote" id="newnote1">
<a>
<img src="images/SN_NotesPage_16.png">
</a>
</div>
</div>
ありがとうございました