gpt4 book ai didi

Javascript:Textarea到html,如何在html中保存精确的空格数?

转载 作者:行者123 更新时间:2023-11-28 21:25:32 25 4
gpt4 key购买 nike

将文本区域的值放入 html 时,如何保存文本区域中单词之间的精确空白计数?

<textarea>word "10 whitespaces here" word "20 whitespaces here" word</textarea>

html:

<div style="width:50px;overflow:hidden;">word "10 whitespaces here" word "20 whitespaces here" word</div>

这样 div 内的所有文本都可见。

最佳答案

假设您从头开始创建 div,这里有一种用 HTML 友好的   替换空格的方法。

var newDiv = document.createElement("div");
// the below replaces two spaces with "&nbsp; "
newDiv.innerHTML = value.replace(/ /g, " &nbsp;");

关于Javascript:Textarea到html,如何在html中保存精确的空格数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5146290/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com