Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm cách nào để đặt hoặc trả về số cột mà một phần tử nên được chia thành bằng JavaScript?


Để chia một div thành ba cột, hãy sử dụng columnCount bất động sản. Đặt số lượng cột và chia số chia.

Ví dụ

Bạn có thể thử chạy đoạn mã sau để trả về số cột mà một phần tử sẽ được chia thành bằng 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>