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

จะตั้งค่าหรือส่งคืนจำนวนคอลัมน์ที่ควรแบ่งออกเป็นองค์ประกอบด้วย JavaScript ได้อย่างไร


หากต้องการแบ่ง div ออกเป็นสามคอลัมน์ ให้ใช้ columnCount คุณสมบัติ. กำหนดจำนวนคอลัมน์และหาร div.

ตัวอย่าง

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

<!DOCTYPE html>
<html>
   <body>
      <p>Click below to create 4 columns</p>
      <button onclick="display()">Columns</button>
      <div id="myID">
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
      </div>
      <script>
         function display() {
            document.getElementById("myID").style.columnCount = "4";
         }
      </script>
   </body>
</html>