文本溢出包含它的元素时,使用 JavaScript 要做什么?


使用 textOverflow 属性来处理文本溢出问题。如果文本溢出包含它的元素,就添加省略号。

示例

您可以尝试运行以下代码,以了解文本溢出包含它的元素时使用 JavaScript 该怎么做 −

<!DOCTYPE html>
<html>
   <head>
      <style>
         #myID {
            border: 2px solid blue;
            background-color: gray;
            overflow: hidden;
            text-overflow: visible;
            width: 200px;
            white-space: nowrap;
         }
      </style>
   </head>
   <body>
      <button onclick = "display()"> Click </button>
      <div id = "myID">
         This is Demo Text! This is Demo Text! This is Demo Text!<br>
         This is Demo Text! This is Demo Text! This is Demo Text!<br>
         This is Demo Text! This is Demo Text! This is Demo Text!<br>
         This is Demo Text! This is Demo Text! This is Demo Text!<br>
      </div>
      <script>
         function display() {
            document.getElementById("myID").style.textOverflow = "ellipsis";
         }
      </script>
   </body>
</html>

更新于: 2020 年 6 月 23 日

65 次浏览

开启你的职业生涯

完成课程即可获得认证

开始
广告