作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个输入,其中包含用户粘贴的文本。我必须找到所有回车字符并将其替换为纯文本“\n”。 “\n”应该在输出文本区域中可见。 Example
我编写了代码,但输出区域将我的“\n”显示为 HTML 标记,并再次使其回车。但如果我使用文本函数,我就无法回车字符。请帮忙。
$("#convert").click( function () {
var txtValue = $('#input').val();
$('#output').html(txtValue.replace(/\r?\n/g, "\n"));
});
#input
和 #output
是文本字段。
最佳答案
只需转义反斜杠即可:
$('#output').html(txtValue.replace(/\n|\r/g, "\\n"));
关于javascript - jQuery textarea 用纯文本替换回车符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38869149/
我是一名优秀的程序员,十分优秀!