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

จะตั้งค่าลำดับสแต็กขององค์ประกอบตำแหน่งใน JavaScript ได้อย่างไร


ในการตั้งค่าลำดับสแต็ก ให้ใช้ zIndex คุณสมบัติ. คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน zIndex คุณสมบัติใน JavaScript -

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         #myID {
            position: absolute;
            left: 20px;
            top: 20px;
            z-index: -1
         }
      </style>
   </head>
   <body>
      <img id = "myID"
         src="https://www.tutorialspoint.com/videotutorials/images/tutor_connect_home.jpg"
         width = "150" height = "150">
      <button type="button" onclick="myFunction()">Set Stack Order</button>
      <p>Z-index is -1</p>
      <script>
         function myFunction() {
            document.getElementById("myID").style.zIndex = "1";
         }
      </script>
   </body>
</html>