gpt4 book ai didi

javascript - HTML - 从 TextArea 获取输入时换行

转载 作者:行者123 更新时间:2023-12-03 06:26:18 25 4
gpt4 key购买 nike

我的问题是,

当我在 TextArea 中输入多行时,我得到这样的输出,

upper one is input and lower one is output

但我想得到这样的输出,

Image 2

在这张照片中我使用了 <br/>只是为了让外观成为我想要的,但实际上我不想使用<br/>多行断线

这是我正在使用的代码...

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<TextArea id = "Input" onKeyupUp = "showResult()" style = "height: 100px; width: 100%; resize: none;"> </TextArea>
<Div id = "output" ></Div>
</body>

<script>
function showResult(){
var input = document.getElementById("Input").value;
document.getElementById("Output").innerHTML = input;
}
</script>
</html>

最佳答案

文本区域在文本格式中使用换行符,如 \n\r\r\n 。因此,使用简单的正则表达式将其中任何一个转换为 HTML 换行符:<br />将解决您的问题。

var inputHTML = input.replace(/\r\n|\r|\n/g, "<br />");

function showResult() {
var input = document.getElementById("Input").value;
var inputHTML = input.replace(/\r\n|\r|\n/g, "<br />");
document.getElementById("output").innerHTML = inputHTML;
}
<!DOCTYPE html>
<html>

<head>
</head>

<body>
<TextArea id="Input" onKeyupUp="showResult()" style="height: 100px; width: 100%; resize: none;"></TextArea>
<Div id="output"></Div>
<button onclick="showResult()">SHOW</button>
</body>

</html>

关于javascript - HTML - 从 TextArea 获取输入时换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38637474/

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