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

จะตั้งค่าว่าองค์ประกอบสามารถปรับขนาดโดยผู้ใช้ด้วย JavaScript ได้อย่างไร?


ใช้ ปรับขนาด คุณสมบัติเพื่อกำหนดว่าองค์ประกอบจะปรับขนาดโดยผู้ใช้หรือไม่

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อตั้งค่าว่าผู้ใช้จะปรับขนาดองค์ประกอบด้วย JavaScript ได้หรือไม่ -

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            width: 350px;
            overflow: auto;
            background-color: orange;
            border: 3px solid red;
         }
      </style>
   </head>

   <body>
      <p>Click to set the right position.</p>
      <button type = "button" onclick = "display()"> Set Right Position </button>

     <div id = "box">
        <p>This is a div. This is a div. This is a div. This is a div.<p>
        <p>This is a div. This is a div. This is a div. This is a div.<p>
        <p>This is a div. This is a div. This is a div. This is a div.<p>
     </div>
     
      <br>
      <br>
      <script>
      function display() {
         document.getElementById("box").style.resize = "both";
      }
      </script>
   </body>
</html>