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

Làm cách nào để trả về hoặc đặt độ rộng của các cột bằng JavaScript?


Sử dụng JavaScript columnWidth thuộc tính để đặt chiều rộng của các cột.

Ví dụ

Bạn có thể thử chạy mã sau để đặt chiều rộng của các cột bằng JavaScript:

<!DOCTYPE html>
<html>
   <body>
      <p>Set the width of the columns</p>
      <button onclick="display()">Change Width</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.
      </div>
      <script>
         function display() {
            document.getElementById("myID").style.columnWidth = "70px";
         }
      </script>
   </body>
</html>