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

จะอนุญาตให้คำที่ยาวและแตกแยกและตัดไปยังบรรทัดถัดไปใน JavaScript ได้อย่างไร


ใช้ wordWrap คุณสมบัติใน JavaScript เพื่อให้สามารถตัดคำยาวๆ และตัดไปยังบรรทัดถัดไปได้

ตัวอย่าง

คุณสามารถลองเรียกใช้สิ่งต่อไปนี้เพื่อเรียนรู้วิธีการทำงานกับ wordWrap ทรัพย์สิน −

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            width: 150px;
            height: 150px;
            background-color: lightblue;
            border: 1px solid black;
         }
      </style>
   </head>
   <body>
      <button onclick = "display()">Set</button>

      <div id = "box">
         ThisisDemoText.ThisisDemoText.ThisisDemoText.ThisisDemoText.Thisis DemoText.ThisisDemoText.
      </div>

      <script>
         function display() {
            document.getElementById("box").style.wordWrap = "break-word";
         }
      </script>
   </body>
</html>