Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

วิธีใช้ JavaScript เพื่อซ่อน DIV เมื่อผู้ใช้คลิกภายนอก


หากต้องการซ่อน div เมื่อผู้ใช้คลิกภายนอก ให้ลองเรียกใช้โค้ดต่อไปนี้

ตัวอย่าง

สาธิตสด

<!DOCTYPE html>
<html>
   <body>
      <script>
         window.onload = function(){
            var hideMe = document.getElementById('hideMe');
            document.onclick = function(e){
               if(e.target.id !== 'hideMe'){
                  hideMe.style.display = 'none';
               }
            };
         };
      </script>
      <div id="hideMe">Click outside this div and hide it.</div>
   </body>
</html>