Sử dụng wordbreak thuộc tính trong JavaScript để đặt quy tắc ngắt dòng cho các tập lệnh không phải CJK. Sau đây là các chữ viết CJK:C cho tiếng Trung, J cho tiếng Nhật, K cho tiếng Hàn.
Ví dụ
Bạn có thể thử chạy mã sau để tìm hiểu cách triển khai wordbreak tài sản -
<!DOCTYPE html> <html> <head> <style> #box { width: 150px; height: 120px; background-color: lightblue; border: 1px solid black; } </style> </head> <body> <button onclick = "display()">Set</button> <div id = "box"> 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("box").style.wordBreak = "break-all"; } </script> </body> </html>