如何在JavaScript中设置文本中单词之间的间距?

在JavaScript中使用wordSpacing 属性设置单词之间的间距。

示例

您可以尝试运行以下代码以了解如何实现wordSpacing 属性-

<!DOCTYPE html>
   <html>
      <body>
         <p id = "pid">This is an example paragraph.</p>
         <button type = "button" id="btn" onclick = "display()">Set Space</button>
         <script>
            function display() {
               document.getElementById("pid").style.wordSpacing = "25px";
            }
         </script>
      </body>
</html>