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

จะคืนหรือกำหนดความกว้างของคอลัมน์ด้วย JavaScript ได้อย่างไร


ใช้ JavaScript ความกว้างคอลัมน์ คุณสมบัติกำหนดความกว้างของคอลัมน์

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อกำหนดความกว้างของคอลัมน์ด้วย 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>